
/* Booking Modal Styling */
#bookingModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.booking-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.25);
}

.booking-modal-header,
.booking-modal-property,
.booking-modal-form {
  padding: 1.5rem;
}

.booking-modal-header {
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.booking-modal-header button {
  font-size: 1.5rem;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
}

.booking-modal-header button:hover {
  color: #000;
}

.booking-modal-property {
  background-color: #f9fafb;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.booking-modal-property img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.booking-modal-property h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-modal-property p {
  margin: 0.1rem 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.booking-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-modal-form input,
.booking-modal-form select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  width: 100%;
}

.booking-modal-form button[type="submit"] {
  background-color: #facc15;
  color: #111827;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.booking-modal-form button[type="submit"]:hover {
  background-color: #eab308;
}

.booking-modal-form .cancel-button {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}
