/* =====================================================================
   app.css — eneste stylesheet. Alle værdier fra DESIGN.md.
   Ingen hex-værdier uden for :root.
   ===================================================================== */

:root {
  /* Flader */
  --bg-page:        #F1F1F0;
  --bg-surface:     #FFFFFF;
  --bg-sidebar:     #FAFAF9;
  --bg-subtle:      #F5F5F4;
  --bg-inset:       #EFEEED;

  /* Streger */
  --border:         #E7E6E4;
  --border-strong:  #D6D5D2;

  /* Tekst */
  --text:           #2B2A28;
  --text-body:      #4A4845;
  --text-muted:     #8A8783;
  --text-faint:     #C2BFBB;

  /* Accent */
  --accent:         #F4511E;
  --accent-hover:   #DC4416;
  --accent-soft:    #FDECE6;
  --accent-line:    #F5876A;
  --accent-fill:    rgba(245, 135, 106, 0.14);

  /* Status */
  --danger:         #E8557A;
  --danger-soft:    #FDEBEF;
  --warn:           #E07B39;
  --warn-soft:      #FCF0E6;
  --success:        #22A06B;
  --success-soft:   #E8F5EF;

  /* Form */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      14px;
  --radius-pill:    999px;

  /* Skygge */
  --shadow-sm:      0 1px 2px rgba(30, 28, 26, 0.04);
  --shadow-pop:     0 8px 24px rgba(30, 28, 26, 0.10);

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;

  /* Typografi */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;

  /* Mål */
  --sidebar-w: 240px;
  --sidebar-w-collapsed: 64px;
  --topbar-h: 64px;
}

/* --- Reset --------------------------------------------------------- */

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

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font: 400 14px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

button, input, select, textarea { font: inherit; color: inherit; }

.icon { flex: none; display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout -------------------------------------------------------- */

.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  transition: grid-template-columns 160ms ease;
}
.app.is-collapsed { grid-template-columns: var(--sidebar-w-collapsed) 1fr; }

.main { min-width: 0; display: flex; flex-direction: column; }

.content {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: var(--sp-6);
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.page-title { font-size: 20px; font-weight: 600; color: var(--text); }
.page-sub   { font-size: 14px; color: var(--text-muted); margin-top: var(--sp-1); }
.page-sub strong { font-weight: 600; color: var(--text); }
.page-actions { display: flex; gap: var(--sp-2); flex: none; }

.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

/* Afstanden i et grid kommer fra gap. Uden dette ville .card + .card
   længere nede skubbe alle kort efter det første 20px ned. */
.grid-stats > .card + .card,
.grid-2 > .card + .card { margin-top: 0; }

/* Nøgletalskort er lige høje, og delta-linjen sidder i bunden også når
   et af kortene mangler den. */
.grid-stats > .card {
  display: flex;
  flex-direction: column;
}
.grid-stats > .card .card-meta { margin-top: auto; padding-top: var(--sp-2); }

/* --- Topbar -------------------------------------------------------- */

.topbar {
  position: sticky; top: 0; z-index: 20;
  height: var(--topbar-h);
  display: flex; align-items: center; gap: var(--sp-4);
  padding: 0 var(--sp-6);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.topbar-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 480px;
  margin: 0 auto;
}
.topbar-search .icon {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.topbar-search input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  background: var(--bg-subtle);
  border: 1px solid transparent;
  border-radius: var(--radius);
}
.topbar-search input:focus {
  background: var(--bg-surface);
  border-color: var(--accent);
  outline: none;
}

/* Skrives med .topbar-prefiks, så .btn længere nede ikke overtrumfer den. */
.topbar .nav-toggle { display: none; }

/* --- Sidebar ------------------------------------------------------- */

.sidebar {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-3);
}

/* Scroll ligger på nav, ikke på .sidebar — ellers klipper overflow den
   runde fold-knap, der stikker 12px ud over sidebar-kanten. */
.sidebar nav { flex: 1; min-height: 0; overflow-y: auto; }

.sidebar-brand {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3) var(--sp-5);
  font-size: 15px; font-weight: 600; color: var(--text);
  text-decoration: none;
}
.sidebar-brand:hover { text-decoration: none; }
.sidebar-brand .icon { color: var(--accent); }

.nav-group { margin-bottom: var(--sp-4); }
.nav-group-title {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  background: none; border: 0; cursor: pointer;
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  text-align: left;
}
.nav-group-title .icon { transition: transform 140ms ease; }
.nav-group.is-folded .nav-group-title .icon { transform: rotate(-90deg); }
.nav-group.is-folded .nav-list { display: none; }

.nav-list { list-style: none; }

/* Fixed også på desktop, så scrim aldrig bliver et grid-item i .app
   (det ville skubbe .main ned i næste række). */
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(30, 28, 26, .35);
  z-index: 45;
}
.nav-scrim[hidden] { display: none; }

.nav-link {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-body);
  font-size: 14px;
  text-decoration: none;
  transition: background 120ms ease;
}
.nav-link:hover { background: var(--bg-subtle); text-decoration: none; }
.nav-link .icon { color: var(--text-muted); }
.nav-link.is-active {
  background: var(--bg-subtle);
  color: var(--text);
  font-weight: 500;
}
.nav-link.is-active .icon { color: var(--text); }

/* Rund knap på kanten mellem sidebar og indhold */
.sidebar-collapse {
  position: absolute;
  top: 78px; right: -12px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #FFF;
  border: 0; border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  box-shadow: var(--shadow-sm);
}
.sidebar-collapse:hover { background: var(--accent-hover); }
.sidebar-collapse .icon { transition: transform 160ms ease; }
.app.is-collapsed .sidebar-collapse .icon { transform: rotate(180deg); }

.app.is-collapsed .sidebar { padding-left: var(--sp-2); padding-right: var(--sp-2); }
.app.is-collapsed .nav-label,
.app.is-collapsed .nav-group-title span,
.app.is-collapsed .sidebar-brand span { display: none; }
.app.is-collapsed .nav-link { justify-content: center; padding: 10px; }
.app.is-collapsed .nav-group-title { justify-content: center; }

/* --- Kort ---------------------------------------------------------- */

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.card + .card { margin-top: var(--sp-5); }
.card--flush { padding: 0; overflow: hidden; }

.card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.card--flush .card-head { padding: var(--sp-5) var(--sp-5) var(--sp-4); margin: 0; }
.card-title { font-size: 15px; font-weight: 600; color: var(--text); }
.card-meta  { font-size: 12px; color: var(--text-muted); }

.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-value {
  margin-top: var(--sp-2);
  font-size: 24px; font-weight: 600; color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* --- Knapper ------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: 120ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.btn--primary { background: var(--accent); color: #FFF; }
.btn--primary:hover { background: var(--accent-hover); }

.btn--secondary { background: var(--bg-surface); color: var(--text); border-color: var(--border); }
.btn--secondary:hover { background: var(--bg-subtle); }

.btn--quiet { background: transparent; color: var(--text-muted); }
.btn--quiet:hover { background: var(--bg-subtle); color: var(--text); }

.btn--danger { background: var(--bg-surface); color: var(--danger); border-color: var(--border); }
.btn--danger:hover { border-color: var(--danger); background: var(--danger-soft); }

.btn--sm { padding: 6px 12px; font-size: 13px; }

/* --- Badges -------------------------------------------------------- */

.badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500;
  background: var(--bg-subtle); color: var(--text-muted);
  white-space: nowrap;
}
.badge--danger  { background: var(--danger-soft);  color: var(--danger); }
.badge--warn    { background: var(--warn-soft);    color: var(--warn); }
.badge--success { background: var(--success-soft); color: var(--success); }
.badge--accent  { background: var(--accent-soft);  color: var(--accent); }

/* --- Tabeller ------------------------------------------------------ */

.table-wrap { overflow-x: auto; }

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  letter-spacing: .02em;
  text-align: left;
  white-space: nowrap;
}
.table td {
  padding: 12px 16px;
  height: 44px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.table tbody tr:nth-child(even) { background: var(--bg-inset); }
.table tbody tr:hover { background: var(--bg-subtle); }
.table .col-num { width: 48px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }
.table a { text-decoration: none; }
.table a:hover { text-decoration: underline; }

.delta-up   { color: var(--success); }
.delta-down { color: var(--danger); }

/* Kebab-menu i sidste kolonne */
.row-menu { position: relative; width: 44px; text-align: right; }
.row-menu-btn {
  background: none; border: 0; cursor: pointer;
  color: var(--text-muted); padding: 4px 8px; border-radius: var(--radius-sm);
  line-height: 1;
}
.row-menu-btn:hover { background: var(--bg-subtle); color: var(--text); }
/* Fixed, ikke absolute: menuen ville ellers ligge inde i .table-wrap's
   overflow-kontekst og enten blive klippet eller udløse en scrollbar.
   Koordinaterne sættes af JS ud fra knappens position. */
.row-menu-list {
  position: fixed;
  min-width: 170px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: var(--sp-1);
  list-style: none;
  z-index: 40;
}
.row-menu-list[hidden] { display: none; }
.row-menu-list a,
.row-menu-list button {
  display: flex; align-items: center; gap: var(--sp-2);
  width: 100%;
  padding: 8px 10px;
  background: none; border: 0;
  border-radius: var(--radius-sm);
  color: var(--text-body); font-size: 13px; text-align: left;
  cursor: pointer; text-decoration: none;
}
.row-menu-list a:hover,
.row-menu-list button:hover { background: var(--bg-subtle); text-decoration: none; }
.row-menu-list .is-danger { color: var(--danger); }

/* --- Formularer ---------------------------------------------------- */

.form-field { margin-bottom: var(--sp-4); }
.form-field label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: 13px; font-weight: 500; color: var(--text);
}
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=password],
.form-field input[type=number],
.form-field input[type=date],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}
.form-field textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--bg-surface);
  border-color: var(--accent);
  outline: none;
}
.form-hint { margin-top: var(--sp-2); font-size: 12px; color: var(--text-muted); }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--danger); }
.form-error { margin-top: var(--sp-2); font-size: 12px; color: var(--danger); }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.form-check { display: flex; align-items: center; gap: var(--sp-2); }
.form-check input { width: 16px; height: 16px; accent-color: var(--accent); }
.form-check label { margin: 0; }

.form-actions {
  display: flex; justify-content: flex-end; gap: var(--sp-2);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

/* --- Flash --------------------------------------------------------- */

.flash {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
  border-radius: var(--radius);
  font-size: 14px;
}
.flash--success { background: var(--success-soft); color: var(--success); }
.flash--error   { background: var(--danger-soft);  color: var(--danger); }
.flash--warning { background: var(--warn-soft);    color: var(--warn); }
.flash--info    { background: var(--bg-subtle);    color: var(--text-body); }
.flash p { flex: 1; }
.flash-close { background: none; border: 0; cursor: pointer; color: inherit; opacity: .7; padding: 0; }
.flash-close:hover { opacity: 1; }

/* --- Graf ----------------------------------------------------------- */

#clicks-chart { position: relative; }
#clicks-chart svg { display: block; overflow: visible; }

.chart-tip {
  position: absolute; top: 0;
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  font-size: 12px; color: var(--text-body);
  white-space: nowrap;
  pointer-events: none;
}
.chart-tip[hidden] { display: none; }

/* --- Upload-zone --------------------------------------------------- */

.upload-zone {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  padding: var(--sp-10) var(--sp-5);
  background: var(--bg-subtle);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: 140ms ease;
}
.upload-zone .icon { color: var(--text-muted); }
/* Knappen er ren pynt — zonen fanger klikket, så filvælgeren kun åbnes én gang */
.upload-pick { pointer-events: none; margin: var(--sp-1) 0; }
.upload-zone:hover { border-color: var(--text-muted); }
.upload-zone.is-dragover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.upload-zone.is-dragover .icon,
.upload-zone.is-dragover .empty-text { color: var(--accent); }

.upload-files { list-style: none; margin-top: var(--sp-3); }
.upload-files li {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.upload-files .file-name { flex: 1; color: var(--text); font-size: 14px; word-break: break-all; }
.upload-files .file-size { color: var(--text-muted); font-size: 12px; white-space: nowrap; }

/* --- Tomme tilstande ----------------------------------------------- */

.empty {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-10) var(--sp-5);
  text-align: center;
}
.empty .icon { color: var(--text-faint); }
.empty-text { color: var(--text); font-size: 15px; }

/* --- Login --------------------------------------------------------- */

.login-page {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: var(--sp-5);
}
.login-card { width: 100%; max-width: 380px; }
.login-card .card-title { margin-bottom: var(--sp-5); }
.login-card .btn { width: 100%; justify-content: center; }

/* --- Responsivt ---------------------------------------------------- */

@media (max-width: 1100px) {
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .app { grid-template-columns: 1fr; }
  .app.is-collapsed { grid-template-columns: 1fr; }

  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 180ms ease;
  }
  .app.is-nav-open .sidebar { transform: translateX(0); }
  .sidebar-collapse { display: none; }

  .topbar .nav-toggle { display: inline-flex; }

  .content { padding: var(--sp-4); }
  .page-head { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* --- Filterrække i card-head --------------------------------------- */

.filter-bar {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.filter-bar select,
.filter-bar input[type=text] {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  font-size: 13px;
}
.filter-bar select:focus,
.filter-bar input:focus { outline: none; border-color: var(--accent); }

.mono { font-family: var(--font-mono); font-size: 12px; }

/* --- Placeholder-chips --------------------------------------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-2); }

.chip {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--text-body);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-static { cursor: default; }
.chip.is-static:hover { border-color: var(--border); color: var(--text-body); }

/* --- Promptvisning -------------------------------------------------- */

.prompt-box {
  margin: var(--sp-2) 0 0;
  padding: var(--sp-4);
  max-height: 460px;
  overflow: auto;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-body);
}
.prompt-box[hidden] { display: none; }

/* --- Renderet AI-svar ----------------------------------------------- */

.md-body { color: var(--text-body); font-size: 14px; line-height: 1.65; }
.md-body > * + * { margin-top: var(--sp-3); }
.md-body h2 {
  margin-top: var(--sp-6);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
/* Modellens ## bliver til h3, fordi kortets egen titel er h2 */
.md-body h3 { margin-top: var(--sp-6); font-size: 15px; font-weight: 600; color: var(--text); }
.md-body h4 { margin-top: var(--sp-5); }
.md-body h4, .md-body h5, .md-body h6 { font-size: 13px; font-weight: 600; color: var(--text); }
.md-body > :first-child { margin-top: 0; }
.md-body ul, .md-body ol { padding-left: var(--sp-5); }
.md-body li + li { margin-top: var(--sp-1); }
.md-body strong { color: var(--text); font-weight: 600; }
.md-body code {
  padding: 1px 5px;
  background: var(--bg-inset);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
}
.md-body blockquote {
  padding-left: var(--sp-4);
  border-left: 2px solid var(--border-strong);
  color: var(--text-muted);
}
.md-body hr { border: 0; border-top: 1px solid var(--border); }
.md-body .table-wrap { margin: var(--sp-4) 0; }

/* --- Testbænk: modelvalg og resultatkolonner ------------------------ */

.model-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-3);
}

.model-option {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.model-option:hover { border-color: var(--border-strong); }
.model-option input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); }
.model-option input:disabled { cursor: not-allowed; }
.model-option input:disabled ~ span { opacity: .5; }
.model-option span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.model-option strong { color: var(--text); font-weight: 600; font-size: 13px; }
.model-option .mono { word-break: break-all; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.compare-grid[hidden] { display: none; }
.compare-grid > .card + .card { margin-top: 0; }

.card--compare { display: flex; flex-direction: column; }
.card--compare .md-body { flex: 1; max-height: 520px; overflow-y: auto; }
.card--compare .card-title { word-break: break-all; }

.run-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2) var(--sp-4);
  margin: var(--sp-4) 0;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.run-meta dt { font-size: 12px; color: var(--text-muted); }
.run-meta dd { margin: 0; font-size: 13px; color: var(--text); font-variant-numeric: tabular-nums; }
