body {
  font-family: Arial, sans-serif;
  background-color: #f7f9fc;
  color: #333;
  margin: 0;
  padding: 20px;
}

h1 {
  margin-top: 50px;
  text-align: center;
  color: #2666af;
}

#forgotPasswordDescription {
  text-align: center;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="email"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #4a90e2;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #357ab8;
}

/* Existing styles remain unchanged */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  table-layout: auto; /* Allow table to auto-adjust width based on content */
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  min-width: 150px; /* Set a minimum width for columns */
  white-space: nowrap; /* Prevent text from wrapping */
}

th {
  background-color: #4a90e2;
  color: white;
}

tr:hover {
  background-color: #f1f1f1;
}

/* Styles for the filter inputs */
label {
  display: block;
  margin: 10px 0 5px; /* Slightly adjust margin */
}

#forgotPasswordContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#forgotPasswordFormContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#emailErrorMessage {
  margin: 0 0 30px 0;
  display: none;
}

#errorMessage {
  margin: 0;
  display: none;
}

/* Style for the filter dropdowns */
select {
  background-color: #fff;
  color: #333; /* Text color for dropdown */
}

select:focus {
  border-color: #4a90e2; /* Change border color on focus */
  outline: none; /* Remove outline */
}

/* Hover effect for dropdown */
select:hover {
  border-color: #357ab8; /* Change border color on hover */
}

#forgotPasswordImage {
  display: block;
  margin: 20px auto; /* Center the image */
  width: 50%; /* Adjust the percentage to change size */
  max-width: 450px; /* Optional: Set a maximum width */
  height: auto; /* Maintain aspect ratio */
}
