/* Reset default margin and padding */
html,
body,
header,
footer,
div,
section {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Header styles */
header {
  background-color: white;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
  max-width: 150px;
  /* Adjust the size of the logo */
  height: auto;
}

header h1 {
  font-size: 24px;
  color: #333333;
  /* Adjust the color as needed */
  margin-top: 10px;
  /* Add space between the logo and the title */
}

/* Sign-out button styles */
#sign-out-button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 5px;
}

#sign-out-button:hover {
  background-color: #45a049;
  /* Green with darker shade on hover */
}

/* User information section styles */
#user-info {
  display: none;
  margin-top: 20px;
  /* Add space between sign-out button and user info */
}

#user-info h2 {
  margin-bottom: 10px;
  /* Add space below heading */
}

#user-info-content {
  max-width: 500px;
  /* Limit width of user info content */
  margin: 0 auto;
  /* Center user info content */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Delete account button styles */
#delete-account-button {
  background-color: #f44336;
  /* Red background color */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin-top: 10px;
  /* Add space above the button */
  cursor: pointer;
  border-radius: 5px;
}

#delete-account-button:hover {
  background-color: #d32f2f;
  /* Darker red background color on hover */
}