/* ============================================================
   SAB Center — Frontend CSS  v2.0
   Design: Split-panel login | Clean sidebar dashboard
   Font: Outfit + DM Sans
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ---- Root Reset ---- */
.sab-root *, .sab-root *::before, .sab-root *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.sab-root {
  --sab-bg:       #f4f6fb;
  --sab-surface:  #ffffff;
  --sab-border:   rgba(0,0,0,.08);
  --sab-text:     #111827;
  --sab-muted:    #6b7280;
  --sab-hint:     #9ca3af;
  --sab-primary:  #2563eb;
  --sab-phovbg:   #1d4ed8;
  --sab-plight:   #eff6ff;
  --sab-plighter: #dbeafe;
  --sab-radius:   14px;
  --sab-shadow:   0 1px 2px rgba(0,0,0,.04), 0 4px 20px rgba(0,0,0,.07);
  --sab-sidebar:  #0f172a;
  --sab-sidebar-hover: rgba(255,255,255,.07);
  --sab-sidebar-active: rgba(255,255,255,.12);
  font-family: 'DM Sans', 'Outfit', sans-serif;
  color: var(--sab-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =============================================================
   LOGIN PAGE — Split Layout
   ============================================================= */
.sab-login-page {
  min-height: 100vh;
  display: flex;
}

/* ---- Left Panel ---- */
.sab-login-left {
  width: 42%;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.sab-login-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(37,99,235,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(16,185,129,.15) 0%, transparent 50%);
}

.sab-login-brand { position: relative; z-index: 1; }
.sab-brand-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.sab-login-brand h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.sab-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Decorative illustration */
.sab-login-illustration {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.sab-il-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.sab-il-circle.c1 { width: 300px; height: 300px; top: -150px; left: -150px; }
.sab-il-circle.c2 { width: 200px; height: 200px; top: -100px; left: -100px; border-color: rgba(255,255,255,.06); }
.sab-il-circle.c3 { width: 120px; height: 120px; top: -60px;  left: -60px;  border-color: rgba(255,255,255,.12); background: rgba(37,99,235,.1); }

.sab-il-lines {
  position: absolute;
  display: flex; gap: 14px;
  top: 0; left: -80px;
}
.sab-il-lines div {
  width: 2px; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.15), transparent);
  border-radius: 2px;
}

.sab-login-info {
  position: relative; z-index: 1;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.9;
}
.sab-login-info p { display: flex; align-items: flex-start; gap: 6px; }

/* ---- Right Panel ---- */
.sab-login-right {
  flex: 1;
  background: var(--sab-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sab-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--sab-surface);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  padding: 2.5rem;
}

.sab-login-card-head {
  margin-bottom: 2rem;
}
.sab-login-card-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sab-text);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.sab-login-card-head p { color: var(--sab-muted); font-size: .9rem; }

/* Flash */
.sab-flash {
  display: flex; align-items: flex-start; gap: 8px;
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.sab-flash.ok  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.sab-flash.err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Form Fields */
.sab-form { display: flex; flex-direction: column; gap: 1.1rem; }

.sab-field { display: flex; flex-direction: column; gap: .4rem; }
.sab-field label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--sab-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.req { color: #ef4444; }

.sab-input-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.sab-input-icon > svg:first-child {
  position: absolute; left: 12px;
  width: 17px; height: 17px;
  color: var(--sab-hint);
  pointer-events: none;
  flex-shrink: 0;
}
.sab-input-icon input {
  width: 100%;
  padding: .7rem 1rem .7rem 2.5rem;
}
.sab-pw-eye {
  position: absolute; right: 10px;
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--sab-hint); line-height: 1;
  display: flex; align-items: center;
}
.sab-pw-eye svg { width: 17px; height: 17px; }
.sab-pw-eye:hover { color: var(--sab-text); }

/* All inputs */
.sab-root input[type="text"],
.sab-root input[type="email"],
.sab-root input[type="password"],
.sab-root input[type="date"],
.sab-root select,
.sab-root textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: .94rem;
  color: var(--sab-text);
  background: #fafafa;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  appearance: none;
  -webkit-appearance: none;
}
.sab-root input:focus,
.sab-root select:focus,
.sab-root textarea:focus {
  border-color: var(--sab-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: #fff;
}

.sab-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--sab-muted); cursor: pointer;
}
.sab-check input { width: auto; }

.sab-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: .85rem;
  background: var(--sab-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .1s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  letter-spacing: .01em;
}
.sab-submit-btn svg { width: 18px; height: 18px; }
.sab-submit-btn:hover  { background: var(--sab-phovbg); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.sab-submit-btn:active { transform: scale(.98); }

.sab-login-help {
  text-align: center;
  font-size: .82rem;
  color: var(--sab-hint);
  margin-top: .25rem;
}

/* =============================================================
   DASHBOARD LAYOUT
   ============================================================= */
.sab-dash {
  display: flex;
  min-height: 100vh;
  background: var(--sab-bg);
}

/* ---- Sidebar ---- */
.sab-sidebar {
  width: 256px;
  flex-shrink: 0;
  background: var(--sab-sidebar);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.sab-sb-top { padding: 1.25rem 0 1rem; }

.sab-sb-brand {
  display: flex; align-items: center; gap: 10px;
  padding: .5rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: .5rem;
}
.sab-sb-emoji { font-size: 1.75rem; }
.sab-sb-name {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.sab-sb-sub { font-size: .72rem; color: rgba(255,255,255,.4); }

.sab-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 .75rem; }

.sab-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: .7rem .9rem;
  border-radius: 9px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s, color .15s;
  position: relative;
}
.sab-nav-item .ni { font-size: 1.15rem; flex-shrink: 0; }
.sab-nav-item:hover { background: var(--sab-sidebar-hover); color: rgba(255,255,255,.9); }
.sab-nav-item.active {
  background: var(--sab-sidebar-active);
  color: #fff;
  font-weight: 600;
}
.sab-nav-item.active::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: #60a5fa;
  border-radius: 0 3px 3px 0;
}
.sab-badge-dot {
  margin-left: auto;
  background: #f59e0b;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.sab-sb-bottom { padding: .75rem; }
.sab-user-card {
  display: flex; align-items: center; gap: 10px;
  padding: .8rem;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  margin-bottom: .5rem;
}
.sab-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 9px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sab-user-name { font-size: .82rem; font-weight: 600; color: #fff; }
.sab-user-role { font-size: .7rem; color: rgba(255,255,255,.4); }

.sab-logout-btn {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  padding: .65rem .9rem;
  background: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  color: rgba(255,255,255,.5);
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.sab-logout-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.sab-logout-btn:hover { background: rgba(239,68,68,.15); color: #f87171; border-color: rgba(239,68,68,.3); }

/* ---- Main area ---- */
.sab-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }

.sab-topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sab-surface);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--sab-border);
  gap: 1rem;
}
.sab-topbar-left { display: flex; align-items: center; gap: 12px; }
.sab-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sab-text);
  letter-spacing: -.02em;
}
.sab-page-date { font-size: .8rem; color: var(--sab-muted); }
.sab-topbar-right { display: flex; align-items: center; gap: 10px; }
.sab-hi { font-size: .88rem; color: var(--sab-muted); font-weight: 500; }
.sab-av-sm {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 8px;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.sab-menu-toggle {
  display: none;
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  padding: 4px; line-height: 1; color: var(--sab-muted);
}

.sab-body { flex: 1; padding: 1.75rem 2rem; overflow-y: auto; }

/* =============================================================
   HOME VIEW
   ============================================================= */
.sab-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.sab-stat {
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  padding: 1.4rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--sab-shadow);
  border-left: 4px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.sab-stat:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.sab-stat-ico  { font-size: 1.75rem; flex-shrink: 0; }
.sab-stat-n    { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.sab-stat-l    { font-size: .8rem; color: var(--sab-muted); font-weight: 600; margin-top: 2px; }

.sab-stat.c-indigo  { border-left-color: #6366f1; }
.sab-stat.c-indigo  .sab-stat-n { color: #4f46e5; }
.sab-stat.c-amber   { border-left-color: #f59e0b; }
.sab-stat.c-amber   .sab-stat-n { color: #d97706; }
.sab-stat.c-emerald { border-left-color: #10b981; }
.sab-stat.c-emerald .sab-stat-n { color: #059669; }

.sab-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.sab-card {
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  padding: 1.5rem;
  box-shadow: var(--sab-shadow);
}
.sab-card h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }

.sab-action-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.sab-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .65rem 1.25rem;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  border: 2px solid transparent;
}
.sab-cta-btn.primary {
  background: var(--sab-primary); color: #fff;
  box-shadow: 0 2px 10px rgba(37,99,235,.3);
}
.sab-cta-btn.primary:hover { background: var(--sab-phovbg); transform: translateY(-1px); }
.sab-cta-btn.outline {
  background: transparent; color: var(--sab-primary);
  border-color: var(--sab-primary);
}
.sab-cta-btn.outline:hover { background: var(--sab-plight); }

.sab-mini-apps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1rem; }
.sab-mini-app {
  display: flex; align-items: center; gap: 10px;
  padding: .6rem .75rem;
  background: #f9fafb;
  border-radius: 8px;
}
.sab-mini-course { flex: 1; font-size: .85rem; font-weight: 600; }
.sab-mini-name   { font-size: .78rem; color: var(--sab-muted); }
.sab-see-all     { font-size: .82rem; font-weight: 600; color: var(--sab-primary); text-decoration: none; }
.sab-see-all:hover { text-decoration: underline; }

.sab-how-card {
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  padding: 1.5rem;
  box-shadow: var(--sab-shadow);
}
.sab-how-card h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.1rem; }
.sab-steps { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.sab-step  { display: flex; gap: .75rem; align-items: flex-start; }
.sab-step-n {
  width: 26px; height: 26px;
  background: var(--sab-plighter);
  color: var(--sab-primary);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.sab-step strong { font-size: .9rem; display: block; }
.sab-step p { font-size: .8rem; color: var(--sab-muted); margin-top: 2px; }

/* =============================================================
   APPLY FORM
   ============================================================= */
.sab-apply-wrap { max-width: 820px; }
.sab-section {
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--sab-shadow);
  margin-bottom: 1.25rem;
}
.sab-sec-hd {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}
.sab-sec-num {
  width: 34px; height: 34px;
  background: var(--sab-primary);
  color: #fff;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sab-sec-hd h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.sab-sec-hd p  { font-size: .82rem; color: var(--sab-muted); }

.sab-fg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

/* Dropzone */
.sab-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 1.5rem 1rem;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  min-height: 110px;
}
.sab-dropzone:hover, .sab-dropzone.has-file {
  border-color: var(--sab-primary);
  background: var(--sab-plight);
}
.dz-ico  { font-size: 2rem; }
.dz-txt  { font-size: .85rem; font-weight: 600; color: var(--sab-text); word-break: break-all; max-width: 200px; }
.dz-hint { font-size: .72rem; color: var(--sab-hint); }

.sab-apply-actions {
  display: flex; justify-content: flex-end; gap: .75rem;
  margin-top: .5rem;
}

/* =============================================================
   MY APPLICATIONS
   ============================================================= */
.sab-table-wrap {
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  box-shadow: var(--sab-shadow);
  overflow: auto;
}
.sab-ftable {
  width: 100%; border-collapse: collapse; font-size: .88rem;
}
.sab-ftable thead th {
  background: #f9fafb;
  padding: .9rem 1.1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  color: var(--sab-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  border-bottom: 1px solid #f0f0f0;
}
.sab-ftable tbody td {
  padding: .95rem 1.1rem;
  border-bottom: 1px solid #f9fafb;
  vertical-align: middle;
}
.sab-ftable tbody tr:last-child td { border-bottom: none; }
.sab-ftable tbody tr:hover td { background: #fafafa; }
.muted  { color: var(--sab-muted); }
.nowrap { white-space: nowrap; }
.sub    { font-size: .78rem; color: var(--sab-hint); margin-top: 2px; }

.sab-doc-row { display: flex; gap: 5px; flex-wrap: wrap; }
.sab-doc-pill {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.sab-doc-pill:hover { background: #dbeafe; }

/* Status pills */
.sab-pill {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.sab-pill.amber  { background: #fef3c7; color: #92400e; }
.sab-pill.green  { background: #d1fae5; color: #065f46; }
.sab-pill.red    { background: #fee2e2; color: #991b1b; }
.sab-pill.gray   { background: #f3f4f6; color: #4b5563; }

/* Empty state */
.sab-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--sab-surface);
  border-radius: var(--sab-radius);
  box-shadow: var(--sab-shadow);
}
.sab-empty-ico { font-size: 4rem; margin-bottom: 1rem; }
.sab-empty h3  { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.sab-empty p   { color: var(--sab-muted); margin-bottom: 1.5rem; font-size: .9rem; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .sab-login-left { width: 38%; padding: 2.5rem 2rem; }
}

@media (max-width: 800px) {
  .sab-login-page { flex-direction: column; }
  .sab-login-left { width: 100%; min-height: 220px; padding: 2rem; }
  .sab-login-illustration { display: none; }
  .sab-login-right { padding: 1.5rem; }
  .sab-login-card  { padding: 2rem 1.5rem; }

  .sab-sidebar { width: 220px; position: fixed; left: -220px; transition: left .25s; }
  .sab-sidebar.open { left: 0; }
  .sab-menu-toggle { display: block; }
  .sab-topbar { padding: 1rem 1.25rem; }
  .sab-body   { padding: 1.25rem; }

  .sab-stat-row  { grid-template-columns: 1fr 1fr; }
  .sab-home-grid { grid-template-columns: 1fr; }
  .sab-fg2       { grid-template-columns: 1fr; }
  .sab-steps     { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .sab-stat-row { grid-template-columns: 1fr; }
  .sab-login-brand h1 { font-size: 1.6rem; }
  .sab-apply-actions { flex-direction: column-reverse; }
  .sab-cta-btn { justify-content: center; }
}

/* =============================================================
   SESSION TIMEOUT WARNING MODAL
   ============================================================= */
.sab-timeout-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: sabFadeIn .25s ease;
}

@keyframes sabFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sab-timeout-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: sabSlideUp .28s cubic-bezier(.34,1.4,.64,1);
}

@keyframes sabSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.sab-timeout-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.sab-timeout-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}

.sab-timeout-box p {
  color: #6b7280;
  font-size: .93rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.sab-timeout-box p strong {
  color: #dc2626;
  font-size: 1.2em;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.sab-timeout-btns {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
