

.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;
}

.address-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.room-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.3);
  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-selection-container {
  margin-bottom: 25px;
}

.payment-dropdown {
  width: 100%;
  padding: 12px 15px;
  font-size: 18px;
  color: #660000;
  border: 1px solid #c0a080;
  border-radius: 6px;
  background-color: white;
  font-family: Arial, sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23660000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.65em auto;
}

.payment-dropdown:hover,
.payment-dropdown:focus {
  border-color: #8B6508;
  outline: none;
  background-color: #fdf5e6;
}

.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;
}

.agreements-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 25px;
}

.consent-box {
  padding: 15px;
  background: #fdfaf5;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.consent-box.required {
  border-left: 4px solid #cc0000;
  background: #fffafa;
}

.consent-box.compliance {
  border-left: 4px solid #006600;
}

.consent-box strong {
  color: #003300;
}

.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #006600;
}
