/* =========================
   BOOKING SELECTOR
   ========================= */

.booking-selector {
  max-width: 540px;
  margin: 0 auto;
}

.booking-selector select,
.booking-selector input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.booking-selector select:focus,
.booking-selector input:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.booking-search {
    display: flex;
    width: 100%;
    gap: 0;
}
.booking-search select,
.booking-search input,
.booking-search button {
    margin-bottom: 0;
    border-radius: 0;
    height: 52px;
}
#guest-selector {
    width: 180px;
    border-radius: 12px 0 0 12px;
		color: #111;
}
#booking-date-picker {
    flex: 1;
	  color: #111;
}
#find-times {
    padding: 0 24px;
    border: 1px solid #111;
    background: #064A57;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0 12px 12px 0;
    white-space: nowrap;
}

#find-times:hover {
    background: #333;
}

@media (max-width: 640px) {

    .booking-search {
        flex-direction: column;
        gap: 10px;
    }

    #guest-selector,
    #booking-date-picker,
    #find-times {
        width: 100%;
        border-radius: 12px;
    }

}

/* =========================
   TIME SLOTS
   ========================= */

#time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.time-slot-heading {
  flex-basis: 100%;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.time-slot {
  padding: 12px 18px;
  border: 1px solid #ddd;
  background: #064A57;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover {
  background: #f78d98;
  border-color: #bbb;
  transform: translateY(-2px);
}

.time-slot.selected {
  background: #064A57;
  color: #fff;
  border-color: #111;
}

.time-slot.disabled {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}

/* =========================
   STATUS MESSAGES
   ========================= */

#time-slots p {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #fff3f3;
  border: 1px solid #ffd6d6;
  color: #c0392b;
}

/* Flatpickr year colour */
.flatpickr-current-month input.cur-year {
    color: #111 !important;
}