/* --- Modal Overlay --- */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.booking-modal.hidden {
  display: none;
}

/* --- Modal Content (Light Theme, No Shadow) --- */
.booking-modal-content,
#bookingModal > div {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ddd !important;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: none !important; /* ✅ Remove glow/shadow */

  /* ✅ Fixed desktop layout */
  width: 630px !important;
  max-width: 90% !important;
  height: auto !important;
  max-height: 612px !important;
  overflow-y: auto;
}

/* --- Close Button --- */
.booking-close,
#closeBookingModal {
  color: #000000 !important;
}

/* --- Text Colors --- */
#bookingModal h2,
#bookingModal label,
#bookingModal p,
#bookingModal span,
#bookingModal .text-gray-400,
#bookingModal .text-gray-500 {
  color: #000000 !important;
}

/* --- Form Inputs --- */
#booking-modal-form input,
#booking-modal-form textarea,
#booking-modal-form select {
  background-color: #ffffff !important;
  border: 1px solid #ccc !important;
  border-radius: 12px !important;
  color: #000000 !important;
  padding: 10px 16px;
  width: 100%;
}

#booking-modal-form input::placeholder,
#booking-modal-form textarea::placeholder {
  color: #555 !important;
}

/* ✅ Make "Please select" option gray-400 */
#booking-modal-form select option[disabled][selected] {
  color: #9ca3af !important;
}

/* --- Submit Button (Solid Purple, No Shadow, No Hover) --- */
#booking-modal-form button {
  background: #662CFF !important; /* Solid purple */
  color: #ffffff !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  cursor: pointer;
  box-shadow: none !important; /* ✅ Remove glow */
}

/* ✅ Remove hover effect */
#booking-modal-form button:hover,
#booking-modal-form button:focus,
#booking-modal-form button:active {
  background: #662CFF !important; /* Stay the same */
  box-shadow: none !important;   /* No glow */
}

/* --- Thank You Text --- */
#booking-modal-thankyou h1,
#booking-modal-thankyou p {
  color: #000000 !important;
}



/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  #bookingModal > div {
    width: 90% !important;
    padding: 20px !important;
    border-radius: 16px !important;
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 50px !important;
    box-shadow: none !important; /* ✅ Ensure no shadow on mobile too */
  }

  #booking-modal-form h2 {
    font-size: 1.5rem;
  }

  #booking-modal-form input,
  #booking-modal-form textarea,
  #booking-modal-form select {
    padding: 8px 12px;
  }

  #booking-modal-form button {
    padding: 12px !important;
    font-size: 0.9rem !important;
  }

  #closeBookingModal {
    top: 10px !important;
    right: 10px !important;
    font-size: 22px !important;
  }

  .grid.grid-cols-1.sm\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  
  /* ✅ Align checkbox flush with first line */
.checkbox-label {
  display: inline-flex;
  align-items: baseline; /* align with text, not top */
  line-height: 1.4;
}

.checkbox-label .checkbox-input {
  margin: 0 6px 0 0;  /* small gap */
  vertical-align: baseline;
  position: relative;
  top: 0.05em;        /* pixel tweak */
}

/* ✅ Fix wrapping on mobile */
@media (max-width: 768px) {
  .checkbox-label {
    display: flex;
    align-items: baseline;
  }
  .checkbox-label span {
    display: inline;
  }
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SF-Pro-Display.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}


}
