/* HL Events — visual redesign */

:root, [data-theme="dark"] {
  --bg: #0b0e13;
  --surface: #11151c;
  --surface-2: #161b24;
  --border: #1f2530;
  --border-strong: #2a3140;
  --text: #e4e7ec;
  --text-dim: #8a93a3;
  --text-muted: #5a6271;
  --accent: #6ea8ff;
  --green: #4ade80;
  --red: #ff6b6b;
  --amber: #fbbf24;
  --purple: #a78bfa;
  --pink: #f472b6;
  --topnav-bg: rgba(11, 14, 19, 0.85);
  --tag-cascade-bg: rgba(255, 107, 107, .12);
  --tag-flash-bg: rgba(251, 191, 36, .12);
  --tag-whale-bg: rgba(167, 139, 250, .12);
  --role-initiator-bg: rgba(244, 114, 182, .14);
  --role-liquidated-bg: rgba(255, 107, 107, .14);
  --role-beneficiary-bg: rgba(74, 222, 128, .14);
  --role-amplifier-bg: rgba(110, 168, 255, .14);
  --month-header-bg: rgba(11, 14, 19, 0.5);
}

[data-theme="light"] {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e5e9ef;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-dim: #475569;
  --text-muted: #94a3b8;
  --accent: #2563eb;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #b45309;
  --purple: #7c3aed;
  --pink: #db2777;
  --topnav-bg: rgba(255, 255, 255, 0.85);
  --tag-cascade-bg: rgba(220, 38, 38, .10);
  --tag-flash-bg: rgba(180, 83, 9, .12);
  --tag-whale-bg: rgba(124, 58, 237, .10);
  --role-initiator-bg: rgba(219, 39, 119, .12);
  --role-liquidated-bg: rgba(220, 38, 38, .10);
  --role-beneficiary-bg: rgba(22, 163, 74, .12);
  --role-amplifier-bg: rgba(37, 99, 235, .10);
  --month-header-bg: rgba(241, 245, 249, 0.92);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Don't show body scrollbar on the main page when content fits.
   Detail page (which doesn't have .workspace) keeps default body scroll. */
body:has(.workspace) { overflow: hidden; }
@media (max-width: 1100px) {
  body:has(.workspace) { overflow: auto; }
}

a { color: inherit; text-decoration: none; }

/* ---------------- nav ---------------- */
.topnav {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--topnav-bg);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-right: auto;
}
.brand .logo {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand .logo::before {
  content: "◆";
  color: var(--accent);
  margin-right: 6px;
}
.brand .tagline {
  color: var(--text-muted);
  font-size: 12px;
}

.topnav .links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--text-dim);
  font-size: 13px;
}
.topnav .links a:hover { color: var(--text); }

#theme-toggle {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, border-color .15s;
}
#theme-toggle:hover { color: var(--text); border-color: var(--accent); }

/* ---------------- controls bar ---------------- */
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.field label {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.select, .range-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s;
}
.select:hover, .range-wrap:hover { border-color: #3a4150; }
.select:focus { outline: none; border-color: var(--accent); }

.range-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
}
.range-wrap input[type="range"] {
  width: 100px;
  accent-color: var(--accent);
}
.range-wrap .val {
  font-variant-numeric: tabular-nums;
  color: var(--text-dim);
  font-size: 12px;
  min-width: 28px;
  text-align: right;
}

/* ---------------- data-status strip ---------------- */
/* Pinned to the right edge of the .controls bar so it doesn't fight with
   field labels. Acts as a button — opens the gaps panel below. */
.data-strip {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.data-strip-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--text-dim);
  font-size: 12px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: border-color .15s, color .15s;
}
.data-strip-summary:hover { color: var(--text); border-color: var(--accent); }
.strip-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.strip-range { color: var(--text); }
.strip-sep   { color: var(--text-muted); }
.strip-fresh { color: var(--green); }
.strip-fresh.warn  { color: var(--amber); }
.strip-fresh.stale { color: var(--red); }
.strip-caret { color: var(--text-muted); font-size: 10px; margin-left: 2px; }

/* Detector-pipeline health pill — sits next to the data-strip. Green dot if all
   detectors ran successfully recently, amber if any went > 30min without a run,
   red if any failed in the last 24h. */
.detector-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--text-dim);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  cursor: help;
}
.detector-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.detector-pill.warn  .detector-pill-dot { background: var(--amber); }
.detector-pill.stale .detector-pill-dot { background: var(--red); }
.detector-pill-text { color: var(--text); }

/* Inline "ⓘ" next to "Detector X_v1" on detail pages — hover/focus reveals a
   popover with that event's full config (thresholds, scales). Configuration
   data comes from /api/events/{id}'s new config field, which joins
   detector_runs by (detector, config_hash). */
.detector-cfg-wrap {
  position: relative;
  cursor: help;
  outline: none;
}
.detector-cfg-icon {
  color: var(--text-muted);
  font-size: 13px;
  vertical-align: -1px;
  transition: color .15s;
}
.detector-cfg-wrap:hover .detector-cfg-icon,
.detector-cfg-wrap:focus .detector-cfg-icon { color: var(--accent); }
.detector-cfg-popover {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  min-width: 240px;
  display: none;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.detector-cfg-wrap:hover .detector-cfg-popover,
.detector-cfg-wrap:focus .detector-cfg-popover { display: block; }
.detector-cfg-hash {
  display: block;
  font-family: ui-monospace, monospace;
  color: var(--text-muted);
  font-size: 11px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 6px;
}
.detector-cfg-table { width: 100%; border-collapse: collapse; }
.detector-cfg-table td { padding: 2px 0; font-size: 12px; }

.data-gaps-panel {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 24px;
  font-size: 12px;
}
.gaps-header { margin-bottom: 8px; color: var(--text-dim); }
.gaps-empty,
.gaps-loading { color: var(--text-muted); font-size: 12px; }
.gaps-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.gaps-table td {
  padding: 4px 12px;
  font-family: ui-monospace, monospace;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.gaps-table td.gap-dur { color: var(--red); text-align: right; }
.gap-row-ongoing td { background: rgba(255, 107, 107, 0.06); }
.gap-ongoing {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  background: rgba(255, 107, 107, 0.12);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

/* ---------------- variance-ratio badge ---------------- */
.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  cursor: help;
}
.vr-badge .vr-sym {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.vr-badge .vr-window {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
[data-theme="light"] .vr-badge .vr-window {
  background: rgba(0, 0, 0, 0.05);
}
.vr-badge.vr-trend-up   { color: var(--green); border-color: rgba(74, 222, 128, 0.4); }
.vr-badge.vr-trend-down { color: var(--red);   border-color: rgba(255, 107, 107, 0.4); }
.vr-badge.vr-trend      { color: var(--amber); border-color: rgba(251, 191, 36, 0.4); }
.vr-badge.vr-mr    { color: var(--accent); border-color: rgba(110, 168, 255, 0.4); }
.vr-badge.vr-rw    { color: var(--text-dim); }
.vr-badge.vr-na    { color: var(--text-muted); }
.vr-badge.vr-loading { color: var(--text-muted); opacity: 0.7; }

/* ---------------- main layout ---------------- */
main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 24px;
}

/* Make the workspace fill the viewport (minus topnav 56 + controls ~58
   + main vertical padding 32 + footer ~46 ≈ 192) so there's no body
   scrollbar on normal screens. The event-list scrolls internally. */
.workspace {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  height: calc(100vh - 200px);
  min-height: 480px;
}
.workspace > .chart-card,
.workspace > .event-list { height: 100%; min-height: 0; }
@media (max-width: 1100px) {
  .workspace {
    grid-template-columns: 1fr;
    height: auto;
  }
  .workspace > .chart-card { height: 500px; }
  .workspace > .event-list { height: 600px; }
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.chart-card h2 {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#chart { flex: 1; min-height: 480px; }

.legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.legend .marker {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.legend .cascade { background: var(--red); border-radius: 50%; }
.legend .flash { background: var(--amber); border-radius: 50%; }
.legend .whale { background: var(--purple); border-radius: 50%; }

/* ---------------- event list (side pane) ---------------- */
.event-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.list-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.sort-wrap { padding: 0; }
.select.small { padding: 4px 8px; font-size: 12px; }

.btn-group {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 2px;
  gap: 2px;
}
.rangebtn {
  border: none;
  background: transparent;
  color: var(--text-dim);
  padding: 4px 10px;
  font: inherit;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: background .12s, color .12s;
}
.rangebtn:hover { color: var(--text); }
.rangebtn.active { background: var(--accent); color: #0b0e13; font-weight: 500; }

.with-hint { display: inline-flex; align-items: center; gap: 5px; }
.hint-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 9px;
  color: var(--text-dim);
  cursor: help;
}
.hint-mark:hover { color: var(--text); border-color: var(--accent); }

#event-list-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.month-header {
  padding: 12px 16px 6px;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  background: var(--month-header-bg);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1;
}
.month-header .muted { color: var(--text-muted); }

.list-item {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .12s;
}
.list-item:hover { background: var(--surface-2); }
.list-item.flash {
  animation: flash 1.2s ease-out;
}
@keyframes flash {
  0% { background: rgba(110, 168, 255, 0.25); }
  100% { background: transparent; }
}

.li-row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.coin-chip {
  font-weight: 600;
  font-size: 12px;
  color: var(--text);
}
.li-time {
  color: var(--text-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}
.li-sev {
  font-size: 10px;
  color: var(--text-dim);
  padding: 1px 6px;
  background: var(--surface-2);
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
}
.li-row2 {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tag-cascade { background: var(--tag-cascade-bg); color: var(--red); }
.tag-blowup { background: var(--tag-whale-bg); color: var(--purple); }

.empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------------- detail page ---------------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 20px;
  transition: color .15s;
}
.back-link:hover { color: var(--text); }
.back-link::before { content: "←"; }

.event-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.event-header .title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.event-header h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.event-header .meta {
  display: flex;
  gap: 24px;
  color: var(--text-dim);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}

/* Big-number row under the headline summary. Each metric is a stacked
   value+label pair, separated by a thin divider so they read like one strip. */
.headline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}
.headline-metrics .metric {
  flex: 1 1 140px;
  padding: 12px 18px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.headline-metrics .metric:last-child { border-right: none; }
.headline-metrics .metric-val {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.headline-metrics .metric-val.pos { color: var(--green); }
.headline-metrics .metric-val.neg { color: var(--red); }
.headline-metrics .metric-lbl {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .headline-metrics .metric { flex-basis: 50%; border-bottom: 1px solid var(--border); }
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.detail-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 14px;
}

.kv {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  font-size: 13px;
}
.kv .k { color: var(--text-dim); }
.kv .v {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--text);
  text-align: right;
}
.kv .v.pos { color: var(--green); }
.kv .v.neg { color: var(--red); }

#timeline-chart {
  height: 340px;
  flex: 0 0 340px;   /* lock height; legend below must NOT consume chart space */
}

.chart-detail {
  display: flex;
  flex-direction: column;
}
.chart-detail > h3 { flex: 0 0 auto; }
/* Protagonist legend (appended via renderProtagonistSummary) sits below the
   chart. flex-wrap so long entry/exit summaries wrap instead of overflowing. */
.chart-detail > div:last-child {
  flex-wrap: wrap;
}

/* Protagonist sparklines card — spans both detail-grid columns so the
   three strips can sit side-by-side at desktop widths. */
.protag-timeline-card {
  grid-column: 1 / -1;
}
.sparkline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .sparkline-row { grid-template-columns: 1fr; }
}
.sparkline-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.sparkline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.sparkline-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sparkline-last {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--text);
}
.sparkline-last.pos { color: var(--green); }
.sparkline-last.neg { color: var(--red); }
.sparkline {
  height: 110px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}

.participants-section {
  margin-top: 24px;
}
.participants-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 14px;
}

.role-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}
.role-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.participants-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
}

.participants-table {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
  font-size: 13px;
}
.participants-table th, .participants-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.participants-table th {
  background: var(--surface-2);
  font-weight: 500;
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.participants-table tr:last-child td { border-bottom: none; }
.participants-table tr:hover td { background: var(--surface-2); }
.participants-table td.num,
.participants-table th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.participants-table td.num {
  font-family: ui-monospace, monospace;
}
.participants-table td.pos { color: var(--green); }
.participants-table td.neg { color: var(--red); }

.role-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.role-initiator { background: var(--role-initiator-bg); color: var(--pink); }
.role-liquidated { background: var(--role-liquidated-bg); color: var(--red); }
.role-beneficiary { background: var(--role-beneficiary-bg); color: var(--green); }
.role-amplifier { background: var(--role-amplifier-bg); color: var(--accent); }

.user-link {
  font-family: ui-monospace, monospace;
  color: var(--accent);
  transition: color .12s;
}
.user-link:hover { color: #95c0ff; text-decoration: underline; }

/* ---------------- footer ---------------- */
footer {
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}
footer a { color: var(--text-dim); }
footer a:hover { color: var(--text); }

/* ---------------- utility ---------------- */
.loading {
  color: var(--text-muted);
  font-size: 13px;
  padding: 40px 0;
  text-align: center;
}
