/* Pre-Samiksha forms portal — minimal, clean styling. */

:root {
  --navy: #23418D;
  --navy-dark: #17295b;
  --amber: #E8A623;
  --amber-light: #fef9eb;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --mute: #8a8a8a;
  --border: #e5e1d6;
  --bg: #faf8f3;
  --white: #ffffff;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --rose: #c0392b;
  --rose-light: #fee2e2;
  --shadow-soft: 0 1px 2px rgba(12,16,32,.04), 0 2px 6px rgba(12,16,32,.05);
  --shadow-lift: 0 8px 24px -4px rgba(12,16,32,.12), 0 2px 6px rgba(12,16,32,.06);
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 15px;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--amber); text-decoration: underline; }
.muted { color: var(--mute); font-weight: 400; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-soft);
}
.topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.brand { font-size: 18px; }
.brand strong { color: var(--navy); }
.topnav { display: flex; gap: 18px; font-size: 14px; }
.topnav a { color: var(--ink-soft); }
.topnav a:hover { color: var(--navy); text-decoration: none; }

/* Footer */
.footer {
  margin-top: 80px;
  padding: 24px 0;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-align: center;
}
.footer a { color: var(--amber); }

/* Section spacing */
.section { padding: 40px 0; }
.section-tight { padding: 24px 0; }
@media (min-width: 768px) { .section { padding: 60px 0; } }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.card-lift { box-shadow: var(--shadow-lift); }

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: 32px; line-height: 1.15; }
h2 { font-size: 24px; line-height: 1.2; }
h3 { font-size: 18px; line-height: 1.3; }
@media (min-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
}

.kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

.lead { font-size: 17px; color: var(--ink-soft); margin-top: 12px; }

/* Form inputs */
.input, input.input, select.input, textarea.input {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, input.input:focus, select.input:focus, textarea.input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(35,65,141,0.15);
}
label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mute); margin-bottom: 6px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); color: var(--white); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: #d49616; color: var(--ink); }
.btn-emerald { background: var(--emerald); color: var(--white); }
.btn-emerald:hover { background: #047857; color: var(--white); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-error { background: var(--rose-light); border: 1px solid #fca5a5; color: #991b1b; }
.alert-success { background: var(--emerald-light); border: 1px solid #6ee7b7; color: #065f46; }
.alert-info { background: #fef9eb; border: 1px solid #fde68a; color: #92400e; }

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-emerald { background: var(--emerald-light); color: #065f46; }
.badge-rose { background: var(--rose-light); color: #991b1b; }
.badge-amber { background: var(--amber-light); color: #92400e; }
.badge-navy { background: rgba(35,65,141,0.12); color: var(--navy); }

/* Tables */
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
table.data th { background: var(--navy); color: var(--white); padding: 12px 14px; text-align: left; font-weight: 600; font-size: 13px; }
table.data td { padding: 12px 14px; border-top: 1px solid var(--border); font-size: 14px; }
table.data tr.current { background: var(--amber-light); }

/* Two-column grid */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 8fr 4fr; }
}

/* ==== Mobile responsiveness — landing + register tweaks ==== */
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .container { padding: 0 14px; }
  .section { padding: 28px 0; }
  .card { padding: 18px; border-radius: 14px; }
  h1 { font-size: 26px !important; line-height: 1.15; }
  h2 { font-size: 22px !important; line-height: 1.2; }
  .btn-lg { padding: 13px 20px; font-size: 14px; }

  /* Topbar handled separately below at <=768px so all narrow viewports stack cleanly. */
  /* Big tables — allow horizontal scroll */
  table.bigtable { font-size: 12px; }
  table.bigtable thead th, table.bigtable tbody td { padding: 8px 6px; }
  /* Schedule rows where date+slot details would otherwise truncate */
  .ac-grid { grid-template-columns: 1fr !important; }
  /* Stretch CTA buttons full-width */
  .cta-banner .btn { width: 100%; }
  /* Hero banner image — keep aspect ratio + don't blow up tiny screens */
  .hero-banner img { border-radius: 10px; }
  /* Sidebar on register form — stop being sticky on mobile (otherwise it floats over content) */
  aside.space-y { position: static !important; }
}

/* On phones, drop columns to single column on register form */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 18px; }

  /* Dashboard counter tiles — stack on narrow viewports */
  .grid-3 { grid-template-columns: 1fr !important; gap: 12px; }

  /* Big tables (dashboard, schedule, results) — keep readable + horizontally scrollable */
  table.bigtable { font-size: 12px; min-width: max-content; }
  table.bigtable thead th, table.bigtable tbody td { padding: 8px 6px; }

  /* Forms, filter rows — let them wrap onto multiple rows on phones */
  form .input { font-size: 14px !important; }

  /* Dashboard filter card on /admin-dashboard/test-N/ — let cells stack */
  form[method="get"] > div { min-width: 0; }

  /* Edit Staff modal — fill width on small screens */
  dialog { max-width: calc(100vw - 24px) !important; width: 100%; margin: 12px auto; }
  dialog::backdrop { background: rgba(0,0,0,0.6); }

  /* Action button rows in dashboards — wrap nicely */
  .container > div > div { flex-wrap: wrap; }
  /* Slot picker cards on register form: don't wrap content too tightly */
  .slot-card { padding: 12px; }
  .slot-card .slot-title { font-size: 14px; }
  .slot-card .slot-meta  { font-size: 12px; }

  /* ===== Topbar: logo centered on top, nav scrolls horizontally below =====
     Stacked layout so the logo gets its own row and the menu items get
     a dedicated scrollable strip below it. */
  .topbar { padding: 0; }
  .topbar-row {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 0;
    gap: 0;
  }
  .brand {
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    gap: 8px !important;
  }
  .brand img { height: 30px !important; }
  .brand .muted { display: none !important; }   /* drop subtitle so logo dominates */

  /* Wrap the nav in a positioned container so we can add edge-fade indicators */
  .topnav {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    padding: 8px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;            /* always start from the left */
    position: relative;
    /* Right-edge fade hint: visible only if there's overflow (browser auto-paints when scrollable) */
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  /* Once user scrolls right, fade the LEFT edge instead so they know there's content above */
  .topnav.scrolled-right {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .topnav.at-end {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 100%);
  }
  .topnav::-webkit-scrollbar { display: none; }
  .topnav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
    padding: 4px 0;
    scroll-snap-align: start;
  }
}

/* Slot picker cards
   NOTE: these live inside <label> wrappers, so we explicitly reset the
   global `label` typography (uppercase, mute, tracking, small font). */
.slot-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: all .15s;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}
.slot-card:hover { border-color: rgba(232,166,35,0.4); }
input.slot-radio { position: absolute; opacity: 0; pointer-events: none; }
input.slot-radio:checked + .slot-card { border-color: var(--amber); background: var(--amber-light); box-shadow: 0 0 0 3px rgba(232,166,35,0.15); }
.slot-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.slot-icon-online { background: var(--emerald-light); color: var(--emerald); }
.slot-icon-offline { background: var(--amber-light); color: #92400e; }
.slot-title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 2px; text-transform: none; letter-spacing: normal; }
.slot-meta { font-size: 13px; color: var(--mute); margin: 0; font-family: ui-monospace, monospace; text-transform: none; letter-spacing: normal; font-weight: 400; }

/* Attempts pills */
.attempts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 768px) { .attempts-grid { grid-template-columns: repeat(4, 1fr); } }
.attempts-grid > label { margin: 0; cursor: pointer; position: relative; display: block; }
input.attempts-radio { position: absolute; opacity: 0; pointer-events: none; }
.attempts-pill {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px;
  padding: 10px 12px;
  border: 2px solid var(--border); border-radius: 12px;
  background: var(--white); text-align: center;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: normal;     /* override global <label> tracking */
  text-transform: none;       /* override global <label> uppercase */
  cursor: pointer; transition: all .15s;
  line-height: 1.25;
}
.attempts-pill:hover { border-color: var(--navy); color: var(--ink); }
input.attempts-radio:checked + .attempts-pill { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Hero banner */
.hero-banner img { width: 100%; display: block; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }

/* Form error text */
.field-error { color: var(--rose); font-size: 12px; margin-top: 4px; }

/* Spacing utility */
.space-y > * + * { margin-top: 18px; }
.space-y-tight > * + * { margin-top: 8px; }

/* Step labels */
.step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 14px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 700;
}

/* ============================================================================
   ADMIN DASHBOARD LAYOUT — full-width content + left sidebar nav
   ============================================================================ */
body.dash-body { background: #f5f3ec; margin: 0; }
.dash-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.dash-sidebar {
  background: #1a1f2e;
  color: #e5e7eb;
  position: sticky; top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
  border-right: 1px solid #0d111a;
  transition: transform .25s ease;
}
.dash-sidebar-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.dash-sidebar-logo { display: inline-flex; }
.dash-sidebar-logo img { height: 30px; width: auto; }
.dash-sidebar-close {
  display: none;
  background: transparent; color: #e5e7eb; border: 0;
  font-size: 18px; cursor: pointer; padding: 0; width: 30px; height: 30px;
}

.dash-nav { flex: 1 1 auto; padding: 12px 0; }
.dash-nav-section {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4); font-weight: 700;
  padding: 14px 18px 6px; margin: 0;
}
.dash-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}
.dash-nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; }
.dash-nav-link.active {
  background: rgba(232,166,35,0.10);
  border-left-color: var(--amber);
  color: #fff;
  font-weight: 600;
}
.dash-nav-icon { flex-shrink: 0; width: 20px; text-align: center; font-size: 14px; }
.dash-nav-meta {
  margin-left: auto;
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  white-space: nowrap;
}

.dash-sidebar-foot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
}
.dash-user { margin: 0 0 6px; font-size: 13px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.dash-logout { color: #fcd34d; font-size: 12px; text-decoration: none; }
.dash-logout:hover { color: #fcd34d; text-decoration: underline; }

.dash-backdrop {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 99;
}
.dash-backdrop.open { display: block; }

.dash-main {
  display: flex; flex-direction: column;
  min-width: 0;          /* ← critical: allows children with overflow to scroll instead of overflowing the grid */
}
.dash-topbar {
  display: none;
  align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.dash-menu-toggle {
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 18px; cursor: pointer;
  line-height: 1;
}
.dash-content { padding: 22px 28px; min-width: 0; }
.dash-content > * { max-width: 100%; }

/* Override base .container max-width inside dashboard so tables get the full width */
.dash-content .container { max-width: 100%; padding: 0; }

/* Mobile / tablet (≤900px) — sidebar collapses behind backdrop */
@media (max-width: 900px) {
  .dash-shell { grid-template-columns: 1fr; }
  .dash-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 260px; z-index: 100;
    transform: translateX(-100%);
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
  }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-sidebar-close { display: inline-flex; align-items: center; justify-content: center; }
  .dash-topbar { display: flex; }
  .dash-content { padding: 16px; }
}

/* Mark text accents */
.mark-amber { background: var(--amber-light); padding: 2px 6px; border-radius: 4px; }
.text-amber { color: #92400e; }
.text-navy { color: var(--navy); }
.text-emerald { color: #065f46; }
.text-rose { color: #991b1b; }

/* Section backgrounds + dividers */
.section.bg-cream { background: #f8f5ee; }
.section.bg-white { background: var(--white); }
.section.bg-bg { background: var(--bg); }
.section-divider { border-bottom: 1px solid var(--border); }

/* Headline accent — italic/serif style for the live look */
.serif-italic {
  font-family: 'Source Serif Pro', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
}

/* Pulse dot for "Live / Open" badge */
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald); margin-right: 6px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* Big results / schedule table */
table.bigtable { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
table.bigtable thead th { background: var(--navy); color: var(--white); padding: 14px 12px; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; text-align: center; }
table.bigtable thead th.left { text-align: left; }
table.bigtable tbody td { padding: 14px 12px; border-top: 1px solid var(--border); font-size: 13px; vertical-align: middle; text-align: center; }
table.bigtable tbody td.left { text-align: left; }
table.bigtable tbody tr.highlight { background: rgba(16,185,129,0.06); }
table.bigtable tbody tr.muted-row td { color: var(--mute); font-style: italic; font-size: 12px; }
/* Plain anchors inside the table (results rows etc.) — block-styled, navy colour */
table.bigtable td > a:not(.btn) { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
table.bigtable td > a:not(.btn):hover { color: var(--amber); }
/* Button-styled anchors inside the table — restore .btn colours so text is visible */
table.bigtable a.btn          { display: inline-flex; margin-bottom: 0; font-weight: 600; }
table.bigtable a.btn-primary  { color: var(--white); }
table.bigtable a.btn-primary:hover { color: var(--white); }
table.bigtable a.btn-emerald  { color: var(--white); }
table.bigtable a.btn-emerald:hover { color: var(--white); }
table.bigtable a.btn-amber    { color: var(--ink); }
table.bigtable a.btn-amber:hover { color: var(--ink); }
table.bigtable a.btn-outline  { color: var(--ink); }
table.bigtable a.btn-outline:hover { color: var(--ink); }

/* Numbered instruction list */
.num-list { list-style: none; padding: 0; margin: 0; }
.num-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.num-list li + li { border-top: 1px dashed var(--border); }
.num-list .num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--amber-light); color: #92400e;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* Mode info card (offline / online) */
.mode-card { padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.mode-card.amber { background: var(--amber-light); border-color: rgba(232,166,35,0.4); }
.mode-card.navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.mode-card.navy a { color: #fcd34d; }
.mode-card .mode-kicker { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700; }
.mode-card.amber .mode-kicker { color: #92400e; }
.mode-card.navy  .mode-kicker { color: #fcd34d; }
.mode-card h3 { margin: 6px 0 8px; font-size: 18px; }
.mode-card.navy h3 { color: var(--white); }

/* Final CTA block */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 40px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cta-banner::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,166,35,0.30), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); }
.cta-banner .cta-grid { position: relative; display: grid; gap: 24px; align-items: center; }
@media (min-width: 768px) {
  .cta-banner { padding: 56px 48px; }
  .cta-banner .cta-grid { grid-template-columns: 1.4fr 1fr; }
}

/* Progressive picker (Mode → Date → Slot) */
.picker-step {
  background: #fafaf6;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 14px;
  transition: opacity .25s, transform .25s;
}
.picker-step[hidden] { display: none; }
.picker-step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  margin: 0 0 12px; text-transform: none; letter-spacing: normal;
}
.picker-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  font-size: 12px; font-weight: 800;
}
.picker-options { display: flex; flex-direction: column; gap: 8px; }
.picker-label   { display: block; cursor: pointer; position: relative; margin: 0; text-transform: none; letter-spacing: normal; font-weight: 400; color: inherit; font-size: inherit; }
.picker-label .slot-card { background: var(--white); }

/* GS / CSAT timing boxes */
.timing-box {
  border: 1px solid var(--border);
  background: #f8f5ee;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.timing-box .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; color: #92400e; margin-bottom: 6px; }
.timing-box .value { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

/* Inline 3-col download form */
.dl-form { display: grid; gap: 10px; max-width: 640px; margin: 0 auto; }
@media (min-width: 640px) { .dl-form { grid-template-columns: 1fr 1fr auto; } }
