/* Reservation Page Specific Styles */

main {
  background: url('/images/lebron_ramos_padel.png') no-repeat center center fixed;
  background-size: cover;
  padding: 2rem;
}

main h1 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
}

#reservation-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#reservation-form label {
  display: block;
  margin: 1rem 0 0.5rem;
}

#reservation-form input,
#reservation-form select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#reservation-form .date-format-display {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

#reservation-form button {
  margin-top: 1.5rem;
  background-color: #2980b9;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 1.5rem auto;
}

#reservation-form button:hover {
  background-color: #1f5f94;
}

main .lang-toggle {
  display: block;
  margin: 0 auto 1rem;
  background-color: white;
  color: #2980b9;
  border: 2px solid #2980b9;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

#reservation-form input[type='checkbox'] {
  margin-right: 0.5rem;
  vertical-align: baseline;
}

.checkbox-container {
  overflow-x: auto;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1rem;
}

.checkbox-label {
  margin-right: 0.3rem;
  white-space: nowrap;
}

.checkbox-row input[type='checkbox'] {
  position: relative;
  top: 4px;
}