

.reservation-form-container {
  background: #f9dfc0;
  /* Matched to mainContent */
  padding: 30px;
  border: 1px solid #888;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 900px;
  font-family: Harrington, Papyrus, serif;
}

.form-section-title {
  color: #003300;
  text-decoration: underline;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-label {
  color: #660000;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.date-inputs-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: space-evenly;
  gap: 20px;
}

.date-input-group {
  text-align: center;
}

.date-input-group input {
  text-align: center;
  width: 180px;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #888;
  border-radius: 4px;
  font-family: Arial, sans-serif;
}

#number_of_nights {
  width: 100px !important;
}

.room-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(0, 51, 0, 0.1);
}

.room-selection-item {
  color: #660000;
  font-size: 18px;
  background: #f9dfc0;
  padding: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #888;
  transition: all 0.2s ease;
  cursor: pointer;
}

.room-selection-item:hover {
  background: #f2d0a8;
  border-color: #666;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Alternating rows for 2-column grid */
.room-selection-item:nth-child(4n+1),
.room-selection-item:nth-child(4n+2) {
  background: ivory;
  /* Ivory Row */
}

.room-selection-item:nth-child(4n+3),
.room-selection-item:nth-child(4n+4) {
  background: #fefefe;
  /* Antique Gold Row */
}

.room-selection-item:has(input:checked) {
  background: #D4AF37;
  /* Antique Gold for checked state */
  border-color: #8B6508;
  color: white;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.room-selection-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.submit-btn {
  background: #003300;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  display: block;
  margin: 20px auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #888;
  border-radius: 4px;
  background: white;
  font-size: 18px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.payment-option-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.payment-option {
  font-size: 16px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 5px;
  color: #660000;
  background: rgba(255, 255, 255, 0.1);
}

.payment-option label {
  cursor: pointer;
}

.delivery-preference-row {
  margin-top: 10px;
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #f0f0f0;
  width: fit-content;
}

.consent-box {
  margin-bottom: 20px;
  padding: 15px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #660000;
  font-family: sans-serif;
}
