/* HMHealth - design tokens */
:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #f0f2f5;
  --surface-3: #e7eaef;
  --border: #e2e5ea;
  --border-strong: #cfd4dc;
  --text: #13161b;
  --text-2: #465061;
  --muted: #6b7482;
  --accent: #0e7c72;
  --accent-hover: #0a655d;
  --accent-soft: #e2f3f1;
  --accent-fg: #ffffff;
  --danger: #c02f2f;
  --danger-soft: #fdecec;
  --ok: #0a7a36;
  --ok-soft: #e5f5eb;
  --warn: #9a5b00;
  --warn-soft: #fdf3dd;
  --info-soft: #e9eefb;
  --info: #2f55b8;
  --chart-critical: #d03b3b;
  --chart-good: #0ca30c;
  --chart-bar: #0e7c72;
  --grid: #e9ecf0;
  --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 1px 3px rgba(16, 24, 40, .04);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, .16);
  --radius: 10px;
  --radius-sm: 7px;
  --sidebar: 232px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0e1014; --surface: #161a20; --surface-2: #1c2129; --surface-3: #252b35;
    --border: #262c36; --border-strong: #353d4a; --text: #e8ebf0; --text-2: #b3bbc7; --muted: #858e9c;
    --accent: #2cc4b1; --accent-hover: #4fd6c5; --accent-soft: #0f2e2b; --accent-fg: #03201d;
    --danger: #f07171; --danger-soft: #3a1b1d; --ok: #4cd08a; --ok-soft: #10301f;
    --warn: #f0b44c; --warn-soft: #33270f; --info: #8aa8f5; --info-soft: #1a2340;
    --chart-bar: #2cc4b1; --grid: #232932;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4); --shadow-lg: 0 12px 32px rgba(0, 0, 0, .55);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0e1014; --surface: #161a20; --surface-2: #1c2129; --surface-3: #252b35;
  --border: #262c36; --border-strong: #353d4a; --text: #e8ebf0; --text-2: #b3bbc7; --muted: #858e9c;
  --accent: #2cc4b1; --accent-hover: #4fd6c5; --accent-soft: #0f2e2b; --accent-fg: #03201d;
  --danger: #f07171; --danger-soft: #3a1b1d; --ok: #4cd08a; --ok-soft: #10301f;
  --warn: #f0b44c; --warn-soft: #33270f; --info: #8aa8f5; --info-soft: #1a2340;
  --chart-bar: #2cc4b1; --grid: #232932;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4); --shadow-lg: 0 12px 32px rgba(0, 0, 0, .55);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  background: var(--bg); color: var(--text); font: 14px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { margin: 0; line-height: 1.25; font-weight: 650; }
h1 { font-size: 22px; letter-spacing: -.01em; }
h2 { font-size: 15px; }
h3 { font-size: 13px; }
code, .mono { font-family: var(--mono); font-size: 12.5px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.nowrap { white-space: nowrap; }
.right { text-align: right; }
.hidden { display: none !important; }
.mt { margin-top: 12px; }
.row { display: flex; align-items: center; gap: 8px; }
.row.wrap { flex-wrap: wrap; }
.spacer { flex: 1; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.grid { display: grid; gap: 16px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3-2 { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); }
.g-stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
@media (max-width: 1000px) { .g-2, .g-3-2 { grid-template-columns: minmax(0, 1fr); } }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Shell ── */
.shell { display: flex; min-height: 100%; }
.sidebar {
  width: var(--sidebar); flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; padding: 16px 12px;
}
.brand { display: flex; align-items: center; gap: 10px; padding: 4px 8px 20px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: var(--accent-fg);
  display: grid; place-items: center;
}
.brand-mark svg { width: 18px; height: 18px; }
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 16px 10px 6px; font-weight: 600; }
.nav a {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm);
  color: var(--text-2); font-weight: 500;
}
.nav a svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .85; }
.nav a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.nav a.active { background: var(--accent-soft); color: var(--accent); }
.nav .count { margin-left: auto; background: var(--danger); color: #fff; border-radius: 99px; font-size: 11px; padding: 0 7px; font-weight: 600; }
.sidebar-foot { margin-top: auto; border-top: 1px solid var(--border); padding-top: 12px; }
.user-chip {
  display: flex; align-items: center; gap: 10px; padding: 6px 8px; width: 100%; border: 0; background: transparent;
  color: inherit; font: inherit; text-align: left; border-radius: var(--radius-sm); cursor: pointer;
}
.user-chip:hover { background: var(--surface-2); }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--surface-3); color: var(--text-2);
  display: grid; place-items: center; font-weight: 650; font-size: 12px; flex-shrink: 0;
}
.user-chip .who { min-width: 0; }
.user-chip .who div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  display: none; align-items: center; gap: 10px; padding: 10px 16px; background: var(--surface);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20;
}
.content { padding: 28px 32px 48px; max-width: 1400px; width: 100%; margin: 0 auto; }
.page-head { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.page-head p { margin: 4px 0 0; color: var(--muted); }

@media (max-width: 860px) {
  .sidebar { position: fixed; z-index: 40; left: 0; transform: translateX(-100%); transition: transform .2s; visibility: hidden; }
  .sidebar.open { transform: none; visibility: visible; box-shadow: var(--shadow-lg); }
  .topbar { display: flex; }
  .content { padding: 20px 16px 40px; }
}

/* ── Buttons & inputs ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 34px; padding: 0 13px;
  border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--text); font: inherit; font-weight: 550; cursor: pointer; white-space: nowrap;
  transition: background .12s, border-color .12s;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { background: var(--surface-2); text-decoration: none; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-danger { color: var(--danger); }
.btn-danger:hover { background: var(--danger-soft); border-color: var(--danger); }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-sm { height: 28px; padding: 0 9px; font-size: 12.5px; }
.btn-icon { width: 34px; padding: 0; }
.btn.loading { pointer-events: none; opacity: .7; }
.btn.loading::before {
  content: ""; width: 13px; height: 13px; border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.input, .select, textarea.input {
  height: 34px; padding: 0 10px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text); font: inherit; min-width: 0;
}
textarea.input { height: auto; padding: 9px 10px; resize: vertical; font-family: var(--mono); font-size: 12.5px; line-height: 1.55; }
.input:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input.search { padding-left: 32px; background: var(--surface) no-repeat 10px 50% / 15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23858e9c' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E"); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label, .label { font-weight: 600; font-size: 13px; }
.field .hint { font-size: 12px; color: var(--muted); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.switch { position: relative; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch .track {
  width: 34px; height: 20px; border-radius: 99px; background: var(--surface-3); border: 1px solid var(--border-strong);
  position: relative; transition: background .15s; flex-shrink: 0;
}
.switch .track::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); transition: transform .15s;
}
.switch input:checked + .track { background: var(--accent); border-color: var(--accent); }
.switch input:checked + .track::after { transform: translateX(14px); }
.switch input:focus-visible + .track { outline: 2px solid var(--accent); outline-offset: 2px; }
.switch input:disabled + .track { opacity: .5; }

.seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 2px; }
.seg button {
  border: 0; background: transparent; color: var(--text-2); font: inherit; font-weight: 550; padding: 4px 11px;
  border-radius: 5px; cursor: pointer; height: 28px;
}
.seg button.on { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }

/* ── Cards ── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); min-height: 52px; }
.card-head p { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.card-body { padding: 18px; }
.card-body.flush { padding: 0; }

.stat { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.stat .k { font-size: 12.5px; color: var(--muted); font-weight: 550; display: flex; align-items: center; gap: 6px; }
.stat .v { font-size: 28px; font-weight: 680; letter-spacing: -.02em; line-height: 1.15; font-variant-numeric: tabular-nums; }
.stat .s { font-size: 12.5px; color: var(--text-2); }
.stat-link { color: inherit; }
.stat-link:hover { text-decoration: none; border-color: var(--border-strong); }
.stat.alert { border-color: var(--danger); background: linear-gradient(0deg, var(--danger-soft), var(--danger-soft)), var(--surface); }
.stat.alert .v { color: var(--danger); }
.stat.good .v { color: var(--ok); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
  font-weight: 600; padding: 10px 14px; border-bottom: 1px solid var(--border); background: var(--surface-2); white-space: nowrap;
}
.table th button.sort { all: unset; cursor: pointer; }
.table th button.sort:hover { color: var(--text); }
.table td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--surface-2); }
.table tr.clickable { cursor: pointer; }
.table tr.selected { background: var(--accent-soft); }
.table .check { width: 36px; }
.table input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; }
.cell-main { font-weight: 600; }
.cell-sub { font-size: 12px; color: var(--muted); }

/* ── Badges / chips ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 8px; border-radius: 99px;
  font-size: 12px; font-weight: 600; white-space: nowrap; background: var(--surface-3); color: var(--text-2);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.plain::before { display: none; }
.b-listed, .b-critical, .b-refused, .b-failed, .b-fail { background: var(--danger-soft); color: var(--danger); }
.b-clean, .b-ok, .b-pass, .b-done { background: var(--ok-soft); color: var(--ok); }
.b-error, .b-warn, .b-warning, .b-major, .b-missing, .b-invalid { background: var(--warn-soft); color: var(--warn); }
.b-pending, .b-running, .b-skipped { background: var(--info-soft); color: var(--info); }
.b-minor { background: var(--surface-3); color: var(--text-2); }
.chip {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 6px; font-size: 12px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); white-space: nowrap;
}
.chip.danger { background: var(--danger-soft); border-color: transparent; color: var(--danger); font-weight: 550; }
.chip svg { width: 12px; height: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 4px; }
.kind { font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

/* ── Lists & feeds ── */
.feed { list-style: none; margin: 0; padding: 0; }
.feed li { display: flex; gap: 12px; padding: 11px 18px; border-bottom: 1px solid var(--border); align-items: flex-start; }
.feed li:last-child { border-bottom: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.dot.listed { background: var(--chart-critical); }
.dot.delisted { background: var(--chart-good); }
.barlist { display: flex; flex-direction: column; gap: 12px; }
.barlist a.bl-row { color: inherit; text-decoration: none; }
.barlist a.bl-row:hover .name { color: var(--accent); }
.barlist .bl-row { display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: 4px 10px; align-items: center; }
.barlist .bl-row .name { font-weight: 550; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.barlist .bl-row .num { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; }
.barlist svg { grid-column: 1 / -1; width: 100%; height: 6px; display: block; }
.barlist .track { fill: var(--surface-3); }
.barlist .fill { fill: var(--chart-bar); }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.checklist li:first-child { padding-top: 0; }
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist .ico { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; font-size: 12px; font-weight: 800; }
.ico.pass { background: var(--ok-soft); color: var(--ok); }
.ico.warn { background: var(--warn-soft); color: var(--warn); }
.ico.fail { background: var(--danger-soft); color: var(--danger); }
.record { font-family: var(--mono); font-size: 11.5px; color: var(--text-2); background: var(--surface-2); border-radius: 6px; padding: 6px 8px; margin-top: 6px; word-break: break-all; }
.kv { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 10px 16px; margin: 0; }
.kv dt { color: var(--muted); font-size: 13px; }
.kv dd { margin: 0; }

/* ── Chart ── */
.chart { position: relative; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart .gridline { stroke: var(--grid); stroke-width: 1; }
.chart .axis { fill: var(--muted); font-size: 11px; font-family: var(--font); }
.chart .s-listed { fill: var(--chart-critical); }
.chart .s-delisted { fill: var(--chart-good); }
.chart .hit { fill: transparent; cursor: crosshair; }
.chart .hit:hover { fill: var(--surface-2); fill-opacity: .6; }
.legend { display: flex; gap: 16px; font-size: 12px; color: var(--text-2); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.l-listed { background: var(--chart-critical); }
.l-delisted { background: var(--chart-good); }
.legend-sw { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.tooltip {
  position: fixed; z-index: 100; pointer-events: none; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); border-radius: 8px; padding: 8px 10px; font-size: 12px; min-width: 130px;
}
.tooltip .t-row { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.tooltip .t-row span { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); }
.tooltip b { font-variant-numeric: tabular-nums; }

progress.bar { appearance: none; width: 100%; height: 8px; border: 0; border-radius: 99px; background: var(--surface-3); overflow: hidden; }
progress.bar::-webkit-progress-bar { background: var(--surface-3); border-radius: 99px; }
progress.bar::-webkit-progress-value { background: var(--accent); border-radius: 99px; transition: width .3s; }
progress.bar::-moz-progress-bar { background: var(--accent); border-radius: 99px; }

/* ── Overlays ── */
.backdrop {
  position: fixed; inset: 0; background: rgba(10, 14, 20, .5); z-index: 60; display: flex;
  align-items: flex-start; justify-content: center; padding: 8vh 16px 16px; overflow-y: auto; animation: fade .12s;
}
.modal { background: var(--surface); border-radius: 14px; width: 100%; max-width: 560px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); animation: pop .15s; }
.modal.wide { max-width: 860px; }
.modal-head { display: flex; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.modal-body { padding: 20px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--border); background: var(--surface-2); border-radius: 0 0 14px 14px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { transform: translateY(8px) scale(.98); opacity: 0; } }
.toasts { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 90; }
.toast {
  background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow-lg);
  max-width: 380px; font-weight: 500; animation: pop .15s;
}
.toast.error { background: var(--danger); color: #fff; }
.toast.success { background: var(--ok); color: #fff; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .toast.success { color: #03140a; } }
:root[data-theme="dark"] .toast.success { color: #03140a; }

.menu { position: relative; }
.menu-list {
  position: absolute; right: 0; top: calc(100% + 4px); background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; box-shadow: var(--shadow-lg); min-width: 190px; padding: 4px; z-index: 30;
}
.menu-list.up { bottom: calc(100% + 4px); top: auto; left: 0; right: auto; }
.menu-list button {
  display: flex; width: 100%; text-align: left; border: 0; background: transparent; color: var(--text);
  font: inherit; padding: 7px 10px; border-radius: 5px; cursor: pointer; gap: 8px; align-items: center;
}
.menu-list button:hover { background: var(--surface-2); }
.menu-list button.danger { color: var(--danger); }
.menu-list hr { border: 0; border-top: 1px solid var(--border); margin: 4px 0; }

.bulkbar {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--accent-soft);
  border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.toolbar { display: flex; gap: 8px; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.pager { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); }
.empty { padding: 48px 20px; text-align: center; color: var(--muted); }
.empty h3 { color: var(--text); font-size: 15px; margin-bottom: 6px; }
.empty svg { width: 36px; height: 36px; color: var(--border-strong); margin-bottom: 10px; }
.notice { padding: 12px 14px; border-radius: 8px; background: var(--info-soft); color: var(--text); font-size: 13px; border: 1px solid transparent; }
.notice.warn { background: var(--warn-soft); }
.notice.danger { background: var(--danger-soft); }
.notice.ok { background: var(--ok-soft); }
.skeleton { height: 14px; border-radius: 6px; background: var(--surface-3); animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.tabs button {
  border: 0; background: transparent; font: inherit; font-weight: 600; color: var(--muted); padding: 9px 12px;
  border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer;
}
.tabs button.on { color: var(--text); border-bottom-color: var(--accent); }
.tabs-inline { border: 0; margin: -12px 0 -13px; }
.table tr.paused td { opacity: .6; }
.tabs .n { font-weight: 500; color: var(--muted); margin-left: 4px; }

/* ── Login ── */
.login {
  min-height: 100vh; display: grid; place-items: center; padding: 24px 16px;
  background: radial-gradient(1200px 500px at 50% -10%, var(--accent-soft), transparent 70%), var(--bg);
}
.login-card { width: 100%; max-width: 380px; padding: 30px; }
.login-card .brand { justify-content: center; padding-bottom: 6px; font-size: 22px; }
.login-card .brand-mark { width: 38px; height: 38px; }
.login-card .brand-mark svg { width: 22px; height: 22px; }
.login-card .btn { height: 40px; }
.login-sub { text-align: center; margin: 0 0 8px; }
.err { color: var(--danger); font-size: 13px; min-height: 18px; }

/* ── Slack preview ── */
.slack-preview { display: flex; flex-direction: column; gap: 8px; background: var(--surface-2); }
.slack-preview hr { border: 0; border-top: 1px solid var(--border); margin: 4px 0; width: 100%; }
.slack-preview h3 { font-size: 15px; }
