/* ============================================================
   Singapore SMB Digital Health Check — design system
   Dark theme: adopts the same surface / accent (cyan) / violet (indigo)
   palette, grade hex, and reusable glass-panel / badge / pill component
   patterns as the EASM tool (public/tools/attack-surface-scan) so the whole
   platform reads as one product. Layout/spacing/type-scale are unchanged
   from the original light "paper/ink/teal" build — only the color system
   and font family moved to match EASM (Inter + JetBrains Mono).
   ============================================================ */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('/vendor/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('/vendor/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('/vendor/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('/vendor/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url('/vendor/fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family:'JetBrains Mono'; font-style:normal; font-weight:400; font-display:swap; src:url('/vendor/fonts/jetbrains-mono-400.woff2') format('woff2'); }
@font-face { font-family:'JetBrains Mono'; font-style:normal; font-weight:500; font-display:swap; src:url('/vendor/fonts/jetbrains-mono-500.woff2') format('woff2'); }
@font-face { font-family:'JetBrains Mono'; font-style:normal; font-weight:600; font-display:swap; src:url('/vendor/fonts/jetbrains-mono-600.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* text tiers (light-on-dark) */
  --ink:#E2E8F0; --ink-70:#94A3B8; --ink-40:#64748B;
  /* surfaces (near-black, matches EASM's surface-950/850) */
  --paper:#0A0E14; --card:#131826; --mist:rgba(255,255,255,0.10);
  /* brand accents: cyan (primary) + violet (secondary), matches EASM tailwind.config */
  --teal:#22D3EE; --teal-d:#0891B2; --violet:#818CF8; --violet-d:#4F46E5;
  /* status colors, matching EASM's scoring.js grade hex family */
  --red:#F87171; --amber:#FBBF24; --green:#4ADE80;
  --red-bg:rgba(220,38,38,0.15); --amber-bg:rgba(234,179,8,0.15); --green-bg:rgba(34,197,94,0.15);
}

html, body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1, h2, h3 { font-family: 'Inter', system-ui, sans-serif; letter-spacing: -0.025em; margin: 0; font-weight: 800; }
.mono { font-family: 'JetBrains Mono', monospace; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-40);
}
.wrap { max-width: 940px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 660px; }

/* ---------- reusable design-system components (ported from EASM's css/style.css) ---------- */
.glass-panel {
  background: rgba(19, 24, 38, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.badge {
  display: inline-flex; align-items: center; gap: .3rem; font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 9px; border-radius: 999px; white-space: nowrap;
}
.badge-critical, .badge-hot { background: var(--red-bg); color: var(--red); border: 1px solid rgba(220,38,38,0.3); }
/* .badge-high: added for Part 3's inline EASM finding severities (feedback #10)
   \u2014 matches public/tools/attack-surface-scan/css/style.css's own .badge-high
   so a finding rendered on this results page reads the same as it does inside
   the standalone scan tool. */
.badge-high { background: rgba(239,68,68,0.12); color: #fb923c; border: 1px solid rgba(239,68,68,0.25); }
.badge-medium, .badge-warm { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(234,179,8,0.3); }
.badge-low, .badge-ok { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.badge-info { background: rgba(255,255,255,0.06); color: var(--ink-70); border: 1px solid rgba(255,255,255,0.12); }
.status-pill { display: inline-flex; align-items: center; gap: .35rem; font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 999px; }

/* ---------- site header (top bar, e.g. Admin link) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 14, 20, 0.75); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.site-header-brand {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-70);
}

/* ---------- hero / landing ---------- */
.hero { padding: 72px 0 56px; border-bottom: 1px solid var(--mist); }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.02; font-weight: 800; max-width: 15ch; color: #fff; }
.hero .lede { font-size: 18px; color: var(--ink-70); max-width: 52ch; margin-top: 22px; }

/* ---------- how-it-works (landing page "what you get" steps) ---------- */
.how-it-works { margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap; }
.how-it-works-step {
  flex: 1 1 220px; background: rgba(19,24,38,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 20px;
}

/* ---------- meters (traffic-light area display) ---------- */
.meters { margin-top: 20px; display: grid; gap: 1px; background: var(--mist); border: 1px solid var(--mist); }
.meter {
  background: var(--card); padding: 15px 17px; display: grid;
  grid-template-columns: 20px 112px 1fr auto; gap: 14px; align-items: center;
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dot.red { background: var(--red); } .dot.amber { background: var(--amber); } .dot.green { background: var(--green); }
.meter .nm { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.meter .why { font-size: 13px; color: var(--ink-70); }
.track { height: 8px; background: rgba(255,255,255,0.08); position: relative; overflow: visible; border-radius: 4px; }
.track > i { position: absolute; top: 0; bottom: 0; left: 0; border-radius: 4px; transition: width .7s cubic-bezier(.2,.7,.2,1); }
.track > i.red { background: var(--red); } .track > i.amber { background: var(--amber); } .track > i.green { background: var(--green); }
.track.unknown { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 5px, transparent 5px 10px); }
.peer { position: absolute; top: -4px; bottom: -4px; width: 2px; background: #fff; opacity: .55; }
.meter .val { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-40); min-width: 96px; text-align: right; }

/* ---------- total / ring ---------- */
.total {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(19,24,38,0.6); backdrop-filter: blur(12px);
  padding: 22px 24px; border-radius: 16px;
}
.ring {
  /* flex column (not grid) so the number + "READINESS" label size to their own
     content and sit close together -- grid's place-items:center previously
     split the circle into two equal implicit rows and centered each child
     within its own half, pushing the label far below the number. */
  width: 106px; height: 106px; border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 34px; line-height: 1;
}
.ring.red { background: var(--red-bg); color: var(--red); border: 3px solid var(--red); }
.ring.amber { background: var(--amber-bg); color: var(--amber); border: 3px solid var(--amber); }
.ring.green { background: var(--green-bg); color: var(--green); border: 3px solid var(--green); }
.ring small {
  display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .1em; margin-top: 2px; opacity: .8;
}

/* ---------- buttons ---------- */
.btn {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal), var(--violet-d)); color: #fff; padding: 13px 26px;
  cursor: pointer; transition: filter .15s, box-shadow .15s; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(6,182,212,0.35);
}
.btn:hover:not(:disabled) { filter: brightness(1.1); }
.btn:disabled { opacity: .32; cursor: not-allowed; }
.btn.ghost { background: rgba(255,255,255,0.05); color: var(--ink); box-shadow: none; border: 1px solid var(--mist); }
.btn.ghost:hover { background: rgba(255,255,255,0.10); }
.btn.sm { padding: 8px 15px; font-size: 13px; }
button:focus-visible, input:focus-visible, select:focus-visible, .btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- survey progress bar ---------- */
.bar { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--mist); padding: 12px 0; }
.barin { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pips { display: flex; gap: 4px; flex: 1; min-width: 120px; }
.pip { height: 3px; flex: 1; background: rgba(255,255,255,0.10); border-radius: 2px; }
.pip.on { background: var(--teal); }

/* ---------- question card ---------- */
.qcard { background: rgba(19,24,38,0.6); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 22px 24px; margin-bottom: 14px; }
.qnum { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-40); }
.qtext { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; margin: 8px 0 4px; line-height: 1.3; color: #fff; }
.hint { font-size: 13px; color: var(--ink-40); margin-bottom: 14px; }
.frame {
  background: rgba(234,179,8,0.08); border-left: 3px solid var(--amber); padding: 14px 16px;
  font-size: 14px; color: #FCD34D; margin: 10px 0 16px; border-radius: 0 8px 8px 0;
}
.opts { display: grid; gap: 7px; }
.opt {
  display: flex; gap: 11px; align-items: flex-start; padding: 11px 13px; border: 1px solid var(--mist);
  background: var(--card); cursor: pointer; font-size: 14.5px; text-align: left; width: 100%;
  font-family: inherit; color: inherit; transition: .12s; border-radius: 8px;
}
.opt:hover { border-color: var(--ink-40); }
.opt.on { border-color: var(--teal); background: rgba(34,211,238,0.08); }
.opt.excl { margin-top: 4px; border-style: dashed; }
.box { width: 15px; height: 15px; border: 1.5px solid var(--ink-40); flex: none; margin-top: 2px; }
.box.round { border-radius: 50%; }
.opt.on .box { border-color: var(--teal); background: var(--teal); box-shadow: inset 0 0 0 2.5px var(--card); }

/* ---------- forms ---------- */
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; color: var(--ink-70); }
.field input, .field select, .qcard select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--mist); border-radius: 8px;
  background: var(--card); font-family: inherit; font-size: 14.5px; color: var(--ink);
}
.field input::placeholder { color: var(--ink-40); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field-error { min-height: 15px; margin: 4px 0 0; font-size: 12px; color: var(--red); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ---------- booking calendar ---------- */
.days { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 18px; }
.day {
  flex: none; padding: 9px 13px; border: 1px solid var(--mist); background: var(--card); border-radius: 8px;
  cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: inherit;
}
.day.on { border-color: var(--teal); background: var(--teal); color: #0A0E14; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(94px, 1fr)); gap: 7px; }
.slot {
  padding: 11px; border: 1px solid var(--mist); background: var(--card); border-radius: 8px; cursor: pointer;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: inherit;
}
.slot.on { border-color: var(--teal); background: var(--teal); color: #0A0E14; }
.slot:disabled { opacity: .35; cursor: not-allowed; }

/* ---------- admin stats / tables ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--mist); border: 1px solid var(--mist); margin-bottom: 22px; border-radius: 12px; overflow: hidden; }
.stat { background: var(--card); padding: 16px 18px; }
.stat .n { font-family: 'JetBrains Mono', sans-serif; font-weight: 700; font-size: 30px; line-height: 1; color: #fff; }
.stat .l { font-size: 12px; color: var(--ink-70); margin-top: 6px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; background: var(--card); }
th {
  text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-40); padding: 9px 11px; border-bottom: 1px solid var(--mist);
  cursor: pointer; white-space: nowrap;
}
td { padding: 10px 11px; border-bottom: 1px solid var(--mist); vertical-align: top; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
.tag { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; padding: 2px 9px; letter-spacing: .05em; border-radius: 999px; display: inline-flex; }
.tag.Hot { background: var(--red-bg); color: var(--red); border: 1px solid rgba(220,38,38,0.3); }
.tag.Warm { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(234,179,8,0.3); }
.tag.Nurture { background: rgba(255,255,255,0.06); color: var(--ink-70); border: 1px solid rgba(255,255,255,0.12); }
.scroll { overflow-x: auto; border: 1px solid var(--mist); border-radius: 12px; }
.tabs { display: flex; gap: 2px; margin-bottom: 20px; border-bottom: 1px solid var(--mist); }
.tab { padding: 9px 15px; border: none; background: none; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--ink-40); border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.tab:hover { color: var(--ink-70); }
.tab.on { color: var(--teal); border-bottom-color: var(--teal); font-weight: 600; }

.warn { background: var(--red-bg); border: 1px solid rgba(220,38,38,0.3); color: #FCA5A5; padding: 12px 15px; font-size: 13px; margin-bottom: 20px; border-radius: 8px; }
.note { font-size: 13px; color: var(--ink-70); }
.foot { border-top: 1px solid var(--mist); margin-top: 56px; padding: 24px 0 40px; font-size: 12.5px; color: var(--ink-40); }

/* ---------- disclaimer callout (three-scores rule) ---------- */
.disclaimer {
  background: rgba(255,255,255,0.04); border: 1px solid var(--mist); padding: 12px 15px;
  font-size: 12.5px; color: var(--ink-70); margin: 14px 0; border-radius: 8px;
}

/* ---------- "you don't need this" credibility block ---------- */
.credibility {
  border: 1px solid rgba(34,211,238,0.3); background: var(--green-bg); padding: 18px 20px; margin: 20px 0; border-radius: 12px;
}
.credibility .eyebrow { color: var(--teal); }

/* ---------- spotlight: q25 preference visibly steers the Reports page
   (feedback item #2) \u2014 same accent language as .credibility above, used
   to highlight whichever finishing element (booking CTA vs free-actions
   list) matches what the respondent said would be genuinely useful. Never
   applied when q25 is unanswered or picks "just curious" (\u00a78.1 suppression
   is untouched by this \u2014 purely a visual emphasis, no scoring/routing
   change). */
.spotlight {
  border: 1px solid rgba(129,140,248,0.4); box-shadow: 0 0 0 1px rgba(129,140,248,0.15); border-radius: 12px;
  position: relative;
}
.spotlight::before {
  content: 'Because you said this would be useful'; position: absolute; top: -11px; left: 14px;
  background: var(--violet-d); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
}

.spinner {
  display: inline-block; width: 14px; height: 14px; border: 2px solid var(--mist);
  border-top-color: var(--teal); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .row2 { grid-template-columns: 1fr; }
  /* .meter has 4 direct grid children (dot, name+tier block, track+why
     block, value block). The old rule only declared 2 columns and relied
     on default row-major auto-placement, which put the 3rd child (the
     track/description block) into column 1 — the same 20px-wide column as
     the dot — squeezing its text and the "unknown" striped placeholder bar
     into a sliver and making them overlap the name/value text next to it.
     Placing every child explicitly by position fixes this: row 1 is
     dot+name side by side, rows 2/3 each span the full width. */
  .meter {
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px; column-gap: 10px;
  }
  .meter > *:nth-child(1) { grid-column: 1; grid-row: 1; }
  .meter > *:nth-child(2) { grid-column: 2; grid-row: 1; }
  .meter > *:nth-child(3) { grid-column: 1 / -1; grid-row: 2; }
  .meter > *:nth-child(4) { grid-column: 1 / -1; grid-row: 3; text-align: left; }
  .meter .val { text-align: left; }
  .total { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }

  /* ---- stitched assessment report preview (public/static/survey-app.js's
     StitchXxx() functions) — these sections use a fixed 48px horizontal
     padding matched to the ~760px-wide document meant for print/PDF. On a
     phone that leaves so little content width that 4-column tables
     (12–20px per padding side eaten twice) render wider than their
     container; combined with the report's overflow:hidden wrapper, the
     right-hand columns were being silently clipped rather than wrapped or
     scrolled. Shrinking the side padding here recovers real content width;
     .stitch-table-wrap (added alongside the tables themselves) is the
     safety net for any table still too wide to fit even after that. */
  .stitch-section, .stitch-cover { padding-left: 20px !important; padding-right: 20px !important; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ---------- stitched report preview: responsive section padding + table overflow ---------- */
.stitch-section, .stitch-cover { padding-left: 48px; padding-right: 48px; }
/* Safety net for the report's data tables (archetype/discipline tables,
   the cover's key/value table, integrated-synthesis, domain scorecard,
   discovered-hosts): scroll horizontally instead of being clipped by the
   report's overflow:hidden ancestor if a table is still wider than its
   column on very narrow screens (long values, nowrap label cells, etc). */
.stitch-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- admin console: login / MFA / invite-accept ---------- */
.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--paper); }
.auth-card {
  width: 100%; max-width: 380px; background: rgba(19,24,38,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 30px;
}
.auth-card h1 { font-size: 22px; margin-bottom: 6px; color: #fff; }
.auth-card .sub { font-size: 13px; color: var(--ink-70); margin-bottom: 22px; }
.qr-box { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 16px 0; }
.qr-box canvas { border: 1px solid var(--mist); background: #fff; padding: 8px; border-radius: 8px; }
.secret-fallback {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .04em;
  background: var(--paper); border: 1px solid var(--mist); padding: 8px 10px; word-break: break-all;
  width: 100%; text-align: center; border-radius: 6px;
}
.err { background: var(--red-bg); border: 1px solid rgba(220,38,38,0.3); color: var(--red); padding: 10px 13px; font-size: 13px; margin-bottom: 15px; border-radius: 8px; }
.ok-msg { background: var(--green-bg); border: 1px solid rgba(34,197,94,0.3); color: var(--green); padding: 10px 13px; font-size: 13px; margin-bottom: 15px; border-radius: 8px; }
.link-btn { background: none; border: none; color: var(--teal); font-family: inherit; font-size: 13px; cursor: pointer; padding: 0; text-decoration: underline; }

/* ---------- admin console: dashboard shell ---------- */
.admin-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--mist); padding: 16px 24px; background: rgba(15,20,32,0.85); backdrop-filter: blur(12px);
}
.admin-top .who { font-size: 13px; color: var(--ink-70); }
.admin-body { max-width: 1200px; margin: 0 auto; padding: 24px; }
.copy-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.copy-row input { flex: 1; min-width: 200px; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.role-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; padding: 2px 9px; letter-spacing: .05em; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--ink-70); border: 1px solid rgba(255,255,255,0.12);
}
.role-badge.owner { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.status-badge { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; padding: 2px 9px; letter-spacing: .05em; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--ink-70); border: 1px solid rgba(255,255,255,0.12); }
.status-badge.active { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.status-badge.invited { background: var(--amber-bg); color: var(--amber); border: 1px solid rgba(234,179,8,0.3); }
.status-badge.deactivated { background: var(--red-bg); color: var(--red); border: 1px solid rgba(220,38,38,0.3); }
.hgrid { display: grid; gap: 12px; }
.hcard { border: 1px solid rgba(255,255,255,0.08); background: rgba(19,24,38,0.6); backdrop-filter: blur(12px); border-radius: 12px; padding: 16px 18px; }
.hcard .claim { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px; margin-bottom: 4px; color: var(--ink); }
.hcard .test { font-size: 12px; color: var(--ink-40); margin-bottom: 10px; }
.pagi { display: flex; gap: 8px; align-items: center; margin-top: 14px; font-size: 13px; }
.sortable { user-select: none; }
.sortable::after { content: ''; }
.sortable.sort-asc::after { content: ' \\2191'; }
.sortable.sort-desc::after { content: ' \\2193'; }
