/* === Calendar & Booking Styles === */
.booking-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  background: #fff;
}

.date-picker {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.ui-datepicker {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  border: none;
  box-shadow: none;
}

.ui-datepicker-header {
  background: #e63946;   /* keep strong red background */
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px 0;
}

.ui-datepicker-title {
  font-size: 18px;
}

.ui-datepicker-prev, 
.ui-datepicker-next {
  top: 10px;
  cursor: pointer;
  color: #457b9d;
  font-weight: bold;
}

.ui-datepicker-prev:hover, 
.ui-datepicker-next:hover {
  color: #fff;
  background: none;
  border: none;
}

.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker-calendar th {
  padding: 15px 0;
  font-weight: 600;
  color: #333;
}

.ui-datepicker-calendar td {
  padding: 0;
  border: 1px solid #eee;
}

.ui-datepicker-calendar td a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}

.ui-datepicker-calendar td a:hover {
  background: #a8dadc;
  color: #fff;
}

.ui-datepicker-calendar .ui-state-active {
  background: #457b9d;
  color: #fff;
}

.slot-picker {
  margin-top: 1.5rem;
}

.slot-column {
  display: inline-block;
  vertical-align: top;
  width: 48%;
  margin-right: 2%;
}

.slot-heading {
  font-weight: bold;
  margin-bottom: 8px;
}

.slot {
  padding: 8px;
  margin: 4px 0;
  border-radius: 4px;
  cursor: pointer;
  background: #f1faee;
  transition: background 0.2s;
}

.slot:hover {
  background: #a8dadc;
  color: #fff;
}

.slot.selected {
  background: #457b9d;
  color: #fff;
}

.slot.unavailable {
  color: #ccc;
  cursor: not-allowed;
}

.booking-summary {
  background: #f1faee;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .ui-datepicker-calendar td a {
    padding: 12px 0;
  }

  .slot-column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .slot {
    width: 100%;
  }
}
