/**
 * Public appointments — matches BCS landing navy/mint.
 */
.appt-page {
  --navy: #14253d;
  --mint: #14f195;
  --cyan: #00d4ff;
  --line: rgba(20, 37, 61, 0.12);
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(20, 241, 149, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 212, 255, 0.08), transparent 50%),
    #f5f7fb;
  min-height: 100vh;
}
.appt-wrap { max-width: 920px; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
.appt-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1.25rem;
}
.appt-brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: inherit; }
.appt-brand img { width: 40px; height: auto; }
.appt-brand strong { display: block; font-size: 0.95rem; }
.appt-brand small { color: #64748b; font-size: 0.75rem; }
.appt-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 8px 28px rgba(20, 37, 61, 0.06); padding: 1.15rem 1.25rem; margin-bottom: 1rem;
}
.appt-card h1 { font-size: 1.35rem; margin: 0 0 0.35rem; }
.appt-card h2 { font-size: 1.05rem; margin: 0 0 0.75rem; }
.appt-lead { color: #64748b; font-size: 0.9rem; margin: 0 0 1rem; }
.appt-host {
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0.85rem; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; color: inherit; margin-bottom: 0.5rem; background: #fafbfd;
}
.appt-host:hover { border-color: var(--cyan); background: #f0fbfd; }
.appt-host strong { display: block; }
.appt-host small { color: #64748b; }
.appt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  border: 0; border-radius: 10px; padding: 0.55rem 1rem; font-weight: 650; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; min-height: 42px;
}
.appt-btn-primary { background: var(--navy); color: #fff; }
.appt-btn-primary:hover { filter: brightness(1.08); color: #fff; }
.appt-btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.appt-btn-mint { background: var(--mint); color: var(--navy); }
.appt-form label { display: block; font-size: 0.8rem; font-weight: 600; margin: 0.55rem 0 0.25rem; }
.appt-form input, .appt-form select, .appt-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 0.5rem 0.65rem; font-size: 0.9rem;
}
.appt-form textarea { min-height: 90px; resize: vertical; }
.appt-slots { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.5rem 0 0.75rem; max-height: 220px; overflow-y: auto; }
.appt-slot {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 0.35rem 0.7rem;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
}
.appt-slot.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.appt-slot:disabled { opacity: 0.45; cursor: not-allowed; }
.appt-alert { padding: 0.65rem 0.8rem; border-radius: 8px; font-size: 0.88rem; margin-bottom: 0.75rem; }
.appt-alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.appt-alert-ok { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.appt-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.appt-slip { border: 2px dashed var(--navy); border-radius: 12px; padding: 1.25rem; }
.appt-slip dl { margin: 0; }
.appt-slip dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: #64748b; margin-top: 0.55rem; }
.appt-slip dd { margin: 0.1rem 0 0; font-weight: 650; }
@media print {
  .appt-no-print { display: none !important; }
  .appt-page { background: #fff; }
  .appt-wrap { max-width: none; }
}
