.img_center {
  display: flex;
  justify-content: center;
}


.login_brief {
  height: 70vh;
  overflow-y: auto;
  margin-bottom: 20px;
}

#buttons {
  display: flex;
  margin-bottom: 20px;
}

#buttons button {
  padding: 10px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
}

#adultForm,
#studentForm {
  display: none;
  max-width: 300px;
}

form {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.my-form {
  width: max-content !important;
}

.my-form label {
  display: block;
  margin-bottom: 5px;
}

.my-form input[type="text"],
.my-form input[type="email"],
.my-form input[type="tel"] {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.my-form input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.data-display {
  position: absolute;
  top: 10vh;
  right: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.cancel-icon {
  padding-top: 25px;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.button-container {
  background-color: grey;
  padding: 10;
}

/* Customize the button styles */
.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #007bff; /* Blue color, you can customize */
  color: #fff; /* Text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.location-btn:hover {
  background-color: #0056b3; /* Darker blue color on hover, you can customize */
}

.img_nav_logo {
  width: 150px;
  height: auto;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
  margin-bottom: 5px;
}

select,
input {
  margin-bottom: 10px;
  padding: 8px;
  width: 100%;
}

#studentFields {
  display: none;
}