#auto-booking-modal .modal-header {
    background-color: #333;
    color: #fff;
}
#auto-booking-modal .modal-title {
  color: #fff;
}
#auto-booking-modal .modal-close {
  background-color: #ff7782;
  color: #fff;
}
#auto-booking-modal .modal-close:hover {
  background-color: #ff5a6f;
}
#auto-booking-modal .form-label {
  font-weight: bold;
}
span.require {
    color: red;
}
.error-text {
  color: red;
  height: 14px;
  margin-top: 3px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}
.refund-link {
  color: rgb(188, 186, 186);
}
#auto-booking-modal .btn-primary {
  font-weight: 700;
}
/* Auto Book Mobile CSS */
.date-slider {
  display:flex;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  gap:0; /* keep your border-left */
  padding:0.25rem 0;
}
.date-slider::-webkit-scrollbar { height:8px; }
.date-item {
  flex: 0 0 auto;
  min-width:72px;
  cursor:pointer;
  text-align:center;
  padding:0;
  margin:0;
}
.date-item .dot {
  height:.5rem;
  width:100%;
}
/* active / disabled styles */
.date-item.active { background:#5398CB; color:#fff; border-radius:6px; }
.date-item.disabled { opacity:.55; cursor:not-allowed; }
.date-item .day-label { font-size:.8rem; display:block; }
.date-item .day-number { font-size:1.5rem; font-weight:500; display:block; }

/* time slots grid */
#time-slots-grid { margin-top:1rem; }
.slot {
  padding:.6rem .5rem;
  border:1px solid #E2E2E2;
  border-radius:.35rem;
  text-align:center;
  cursor:pointer;
  user-select:none;
}
.slot.disabled { cursor:not-allowed; opacity:.6; }
.slot.selected { background:#5398CB; color:#fff; border-color:#5398CB; }
.bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: white;
  padding: 10px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}

.bottom-buttons .btn {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.bottom-buttons a {
	font-size: 16px;
	font-weight: 700;
}

.bottom-buttons btn:hover {
  background: #0056b3;
}
