body {
  background-color: #b9dbfd;
  font-family: monospace;
  font-size: 1rem;
}

.header {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 20px;
  background-color: white;
  overflow: hidden;
}

.logo img {
  height: 200px; /* Adjust logo height */
  margin: 20px;
  padding: 20px;
  float: left;
}

.details {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.account {
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin: 20px;
}
.form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 40px 20px 40px 20px;
  margin-bottom: 30px;
  padding: 40px;
  background: #fcfafa;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  align-items: center;
  text-align: left;
}
input[type="text"],
input[type="number"],
input[type="file"] {
  width: 100%;
  padding: 8px 8px 8px 8px;

  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.button {
  background-color: #c2f1d4; /* Green */
  border: none;
  color: rgb(43, 6, 6);
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;

  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
}

.button:hover {
  background-color: #846bf0;
  color: rgb(224, 43, 43);
}
.footer {
  text-align: center;
  padding: 10px;
  background-color: #007bff;
  color: white;
  font-size: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}
.mt-3 {
  align-items: center;
}
.hidden {
  display: none;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
