/* css/booking.css  */

.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.booking-sheet {
  width: min(480px, 94vw);
  background: linear-gradient(145deg, #020617, #020617);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  color: #e5e7eb;
}

.booking-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.booking-sheet-title {
  font-size: 16px;
  font-weight: 600;
}

.booking-sheet-sub {
  font-size: 12px;
  color: var(--muted);
}

.booking-close {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
}

.booking-form .field {
  margin-bottom: 10px;
}

.booking-form label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 13px;
}

.booking-form textarea {
  min-height: 70px;
  resize: vertical;
}

.booking-form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
}

.booking-empty {
  font-size: 13px;
  color: var(--muted);
}
