.booking-manager-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem;
  align-items: start;
}

.booking-manager-form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem;
}

.booking-manager-form label {
  display: grid;
  gap: .35rem;
  font-weight: 600;
}

.booking-manager-form input,
.booking-manager-form textarea {
  padding: .65rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}

.booking-manager-form button {
  background: #6d28d9;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-weight: 700;
}

.booking-checkbox {
  display: flex !important;
  align-items: center;
  gap: .5rem;
  font-weight: 500 !important;
}

.booking-honeypot { display:none !important; }

.booking-slot-summary {
  border: 1px solid #ddd6fe;
  background: #f5f3ff;
  color: #4c1d95;
  border-radius: 10px;
  padding: .7rem .8rem;
  font-weight: 600;
  font-size: .93rem;
}

.booking-calendar-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: .95rem;
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
  gap: .5rem;
}

.booking-calendar-head h3 {
  margin: 0;
  font-size: 1rem;
  color: #1f2a4d;
}

.booking-calendar-head button {
  width: 32px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.booking-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  margin-bottom: .35rem;
}

.booking-weekdays span {
  text-align: center;
  font-size: .72rem;
  color: #64748b;
  font-weight: 700;
}

.booking-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
}

.booking-day,
.booking-day-empty {
  min-height: 34px;
}

.booking-day {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #1e293b;
  font-weight: 600;
  cursor: pointer;
}

.booking-day[disabled] {
  opacity: .35;
  cursor: not-allowed;
}

.booking-day.is-selected {
  background: #6d28d9;
  border-color: #6d28d9;
  color: #fff;
}

.booking-times-wrap {
  margin-top: .9rem;
}

.booking-times-wrap strong {
  display: block;
  margin-bottom: .45rem;
  color: #1f2a4d;
}

.booking-time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem;
}

.booking-time {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  padding: .38rem .4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
}

.booking-time.is-selected {
  background: #6d28d9;
  border-color: #6d28d9;
  color: #fff;
}

.booking-empty-slots {
  margin: 0;
  color: #64748b;
  font-size: .88rem;
}

@media (max-width: 980px) {
  .booking-manager-layout {
    grid-template-columns: 1fr;
  }
}
