body.booking-page button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.booking-page .message,
body.slot-create-page .message {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
}

body.booking-page .message.success,
body.slot-create-page .message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

body.booking-page .message.error,
body.slot-create-page .message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

body.booking-page .message.info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

body.booking-page .back-button {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

body.booking-page .back-button:hover {
  background: #1d4ed8;
}

body.booking-page .verification-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.booking-page .verification-modal.hidden {
  display: none;
}

body.booking-page .verification-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(6px);
}

body.booking-page .verification-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dbe5f0;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

body.booking-page .verification-pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.booking-page .verification-modal-dialog h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.05;
}

body.booking-page .verification-modal-text {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

body.booking-page .verification-timer-wrap {
  margin-top: 22px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #dbe5f0;
  border-radius: 18px;
}

body.booking-page .verification-timer-label {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.booking-page .verification-timer {
  margin-top: 8px;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.04em;
}

body.booking-page .verification-modal-note {
  margin-top: 18px;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

body.slot-create-page {
  background: linear-gradient(to bottom, #f8fbff 0%, #f3f6fb 100%);
}

body.slot-create-page.embedded-slot-create {
  background: transparent;
}

body.slot-create-page .wrap {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
}

body.slot-create-page .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

body.slot-create-page .card {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(223, 216, 206, 0.9);
}

body.slot-create-page .card {
  max-width: 100%;
}

body.slot-create-page h1 {
  margin: 0 0 10px;
}

body.slot-create-page .intro {
  margin-bottom: 22px;
  color: #6b7280;
  line-height: 1.6;
}

body.slot-create-page input,
body.slot-create-page select {
  min-height: 48px;
  background-color: #fff;
  border: 1px solid #d7deea;
}

body.slot-create-page input[readonly] {
  background: #f1f5f9;
  color: #6b7280;
}

body.slot-create-page select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
}

body.slot-create-page select:disabled,
body.slot-create-page select.is-locked {
  background: #f1f5f9;
  color: #6b7280;
  cursor: not-allowed;
}

body.slot-create-page .checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.slot-create-page .checkbox-chip {
  padding: 8px 14px;
  border: 1px solid #d7deea;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

body.slot-create-page .checkbox-chip input {
  display: none;
}

body.slot-create-page .checkbox-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

body.slot-create-page .checkbox-chip.disabled {
  background: #f1f5f9;
  color: #94a3b8;
  border-color: #d7deea;
  cursor: not-allowed;
  opacity: 0.8;
}

body.slot-create-page .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

body.slot-create-page .actions button,
body.slot-create-page .actions .back-link {
  width: auto;
}

body.slot-create-page button {
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

body.slot-create-page button:hover {
  background: var(--primary-hover);
}

body.slot-create-page .back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #d7deea;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
}

body.slot-create-page.embedded-slot-create .wrap {
  max-width: 100%;
  padding: 0;
}

body.slot-create-page.embedded-slot-create .card {
  padding: 26px 24px 22px;
  border-radius: 28px;
  box-shadow: none;
  border: 0;
}

body.slot-create-page.embedded-slot-create .back-link,
body.slot-create-page.embedded-slot-create #session-warning {
  display: none !important;
}

body.slot-create-page.embedded-slot-create .actions {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  body.slot-create-page .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.slot-create-page {
    background: #f3f6fb;
  }

  body.slot-create-page .wrap {
    max-width: 100%;
  }

  body.slot-create-page .card {
    min-height: calc(100vh - 12px);
    margin-top: 12px;
    padding: 20px 16px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    overflow-x: clip;
  }

  body.slot-create-page h1 {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  body.slot-create-page .intro {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body.slot-create-page label {
    font-size: 0.92rem;
  }

  body.slot-create-page input,
  body.slot-create-page select {
    font-size: 16px;
    border-radius: 12px;
  }

  body.slot-create-page .grid {
    grid-template-columns: 1fr;
  }

  body.slot-create-page .checkbox-grid {
    gap: 6px;
  }

  body.slot-create-page .checkbox-chip {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}
