:root {
  color-scheme: dark;
  --black: #080808;
  --panel: #111111;
  --panel-soft: #171717;
  --panel-glow: rgba(214, 255, 77, 0.08);
  --border: #272727;
  --text: #f5f4f0;
  --muted: #9a9a9a;
  --muted-soft: #6d6d6d;
  --acid: #d6ff4d;
  --acid-soft: rgba(214, 255, 77, 0.16);
  --ok: #b9ff84;
  --warn: #ffd86f;
  --danger: #ff9d9d;
  --radius: 24px;
  --shadow: 0 36px 90px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 255, 77, 0.12), transparent 28%),
    radial-gradient(circle at 0% 0%, rgba(214, 255, 77, 0.06), transparent 24%),
    #090909;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(214, 255, 77, 0.04), transparent 34%);
  opacity: 0.85;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

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

.hidden {
  display: none !important;
}

.login-denied-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #000;
  text-align: center;
}

.login-denied-box {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.login-denied-title {
  margin: 0;
  max-width: 36ch;
  color: #f4f3ef;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.login-denied-hint {
  margin: 0;
  max-width: 42ch;
  color: #a9a9a9;
}

.login-denied-box button {
  width: auto;
  border-radius: 8px;
  padding: 12px 16px;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 28px));
  margin: 22px auto 36px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, var(--panel-glow), transparent 34%);
  opacity: 0.9;
}

.login-card,
.app-sidebar,
.topbar,
.page .card {
  padding: 22px;
}

.login-card {
  width: min(480px, 100%);
  margin: 74px auto;
}

.login-card h1,
.sidebar-brand h2,
.topbar h2,
.stats .v {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}

.login-card h1 {
  margin-top: 6px;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 0.92;
}

.login-card > p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 34ch;
}

.eyebrow {
  color: var(--acid);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stack {
  display: grid;
  gap: 12px;
}

.login-card .stack {
  margin-top: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 14px;
  background: #171717;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 255, 77, 0.34);
  box-shadow: 0 0 0 4px rgba(214, 255, 77, 0.08);
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--acid);
  color: #101010;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 30px rgba(214, 255, 77, 0.18);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

button.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

button.warn {
  background: rgba(255, 216, 111, 0.12);
  color: #ffe8a8;
  border-color: rgba(255, 216, 111, 0.24);
  box-shadow: none;
}

button.danger {
  background: rgba(255, 157, 157, 0.1);
  color: #ffd8d8;
  border-color: rgba(255, 157, 157, 0.22);
  box-shadow: none;
}

button.ghost-danger {
  background: rgba(255, 157, 157, 0.04);
  color: #ffb3b3;
  border-color: rgba(255, 157, 157, 0.18);
  box-shadow: none;
}

.hint,
.msg,
.section-copy,
.cell-muted {
  color: var(--muted);
}

.msg {
  min-height: 18px;
  font-size: 0.86rem;
}

.hint {
  font-size: 0.8rem;
  line-height: 1.55;
}

.app-shell {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.app-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(14px);
}

.sidebar-brand {
  display: grid;
  gap: 10px;
}

.sidebar-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(214, 255, 77, 0.45);
}

.sidebar-brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.sidebar-brand h2 {
  font-size: 3rem;
  line-height: 0.92;
}

.sidebar-brand p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.sidebar-nav,
.sidebar-actions {
  display: grid;
  gap: 10px;
}

.nav-link {
  width: 100%;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-color: var(--border);
  box-shadow: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-color: rgba(214, 255, 77, 0.16);
}

.nav-link.is-active {
  background: var(--acid-soft);
  color: #141414;
  border-color: rgba(214, 255, 77, 0.16);
}

.app-content {
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(14px);
}

.topbar h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 0.92;
}

.topbar p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--acid-soft);
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-stack,
.page {
  display: grid;
  gap: 18px;
}

.page {
  display: none;
}

.page.is-active {
  display: grid;
}

.grid {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stats .card {
  min-height: 116px;
  padding: 16px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 44%),
    var(--panel-soft);
}

.stats .k {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats .v {
  margin-top: 10px;
  font-size: 3rem;
  line-height: 0.88;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.forms-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

.worker-top-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
}

.table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-copy {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 72ch;
}

.table-wrap {
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

th {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.inquiry-row.is-selected td {
  background: rgba(214, 255, 77, 0.09);
}

td a {
  color: var(--text);
  text-decoration: none;
}

td a:hover {
  color: var(--acid);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.actions button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.cell-muted {
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.stack-compact {
  display: grid;
  gap: 8px;
}

.code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  word-break: break-all;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge.ok {
  color: #caffb1;
  background: rgba(185, 255, 132, 0.12);
  border-color: rgba(185, 255, 132, 0.22);
}

.badge.warn {
  color: #ffe59b;
  background: rgba(255, 216, 111, 0.11);
  border-color: rgba(255, 216, 111, 0.2);
}

.badge.bad {
  color: #ffd3d3;
  background: rgba(255, 157, 157, 0.11);
  border-color: rgba(255, 157, 157, 0.22);
}

.badge.accent {
  color: var(--acid);
  background: var(--acid-soft);
  border-color: rgba(214, 255, 77, 0.18);
}

.inline-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-toggle input {
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--acid);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inquiry-detail-empty {
  min-height: 140px;
  display: grid;
  align-items: center;
  color: var(--muted);
  line-height: 1.7;
}

.inquiry-detail {
  display: grid;
  gap: 18px;
}

.inquiry-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.inquiry-detail-head h4 {
  margin-top: 8px;
  font-size: 1.75rem;
  line-height: 1.08;
}

.inquiry-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.inquiry-meta-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.inquiry-meta-item .k {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-meta-item strong {
  font-size: 0.98rem;
  line-height: 1.45;
  word-break: break-word;
}

.inquiry-meta-item .sub {
  color: var(--muted-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.inquiry-experience {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(214, 255, 77, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 255, 77, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.015);
}

.inquiry-experience h4 {
  font-size: 1rem;
}

.inquiry-experience p {
  line-height: 1.72;
  white-space: pre-wrap;
}

.delivery-warning {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 157, 157, 0.18);
  background: rgba(255, 157, 157, 0.06);
  color: #ffd9d9;
  font-size: 0.88rem;
  line-height: 1.6;
}

.worker-telemetry-panel,
.worker-probe-panel {
  display: grid;
  gap: 14px;
}

.worker-telemetry-empty,
.worker-probe-empty {
  color: var(--muted);
  font-size: 0.88rem;
}

.worker-telemetry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.worker-telemetry-graph,
.worker-signal-main,
.worker-mini-stat,
.worker-top-customer,
.worker-probe-panel,
.worker-probe-stat {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%),
    rgba(255, 255, 255, 0.015);
}

.worker-telemetry-graph {
  padding: 18px;
}

.worker-telemetry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.worker-telemetry-head h4 {
  font-size: 1.4rem;
  line-height: 1.08;
}

.worker-telemetry-copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 48ch;
}

.worker-telemetry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--acid-soft);
  color: var(--acid);
  border: 1px solid rgba(214, 255, 77, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worker-telemetry-badge.warn {
  color: #ffe59b;
  background: rgba(255, 216, 111, 0.11);
  border-color: rgba(255, 216, 111, 0.2);
}

.worker-telemetry-badge.bad {
  color: #ffd3d3;
  background: rgba(255, 157, 157, 0.11);
  border-color: rgba(255, 157, 157, 0.2);
}

.worker-telemetry-canvas {
  width: 100%;
  min-height: 280px;
}

.worker-telemetry-side {
  display: grid;
  gap: 14px;
}

.worker-signal-main {
  padding: 16px;
}

.worker-signal-main .label,
.worker-mini-stat .k,
.worker-probe-stat .k,
.worker-top-customer h5 {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.worker-signal-main .value,
.worker-mini-stat .v,
.worker-probe-stat .v {
  margin-top: 8px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
}

.worker-signal-main .value {
  font-size: 3.3rem;
}

.worker-signal-main .meta,
.worker-mini-stat .sub,
.worker-probe-stat .sub,
.worker-top-customer .sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.worker-telemetry-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.worker-mini-stat,
.worker-probe-stat {
  min-height: 112px;
  padding: 14px;
}

.worker-mini-stat .v {
  font-size: 2.4rem;
}

.worker-probe-stat .v {
  font-size: 2.1rem;
}

.worker-top-customer {
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 255, 77, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.015);
}

.worker-top-customer .email {
  margin-top: 8px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  word-break: break-word;
}

.worker-usage-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.8rem;
}

.worker-probe-panel {
  margin-bottom: 14px;
  padding: 16px;
}

.worker-probe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.worker-probe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.worker-probe-workers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.worker-probe-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
}

@media (max-width: 1360px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .worker-top-grid,
  .worker-telemetry-grid {
    grid-template-columns: 1fr;
  }

  .worker-telemetry-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
  }

  .stats,
  .two-cols,
  .forms-layout,
  .worker-probe-grid,
  .worker-telemetry-stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-meta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, calc(100% - 18px));
    margin: 10px auto 22px;
  }

  .login-card,
  .app-sidebar,
  .topbar,
  .page .card {
    padding: 18px;
    border-radius: 20px;
  }

  .sidebar-brand h2,
  .topbar h2 {
    font-size: 2.5rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-meta-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    border-radius: 16px;
  }

  th,
  td {
    padding: 12px 12px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions button,
  .inline-actions button,
  .sidebar-actions button {
    width: 100%;
  }
}

/* ─── Productos (admin) ────────────────────────────────────────────── */

.grid.four-cols {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .grid.four-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .grid.four-cols { grid-template-columns: 1fr; }
}

.products-kpis .kpi-card h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #8b94a3);
}

.products-kpis .kpi-card .kpi-value {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text, #0f172a);
}

.products-filters .filters-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .products-filters .filters-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .products-filters .filters-grid { grid-template-columns: 1fr; }
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--muted, #8b94a3);
}

.filter-field input,
.filter-field select {
  background: var(--bg-soft, #f6f7fb);
  border: 1px solid var(--border, rgba(15, 23, 42, 0.08));
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text, #0f172a);
}

.filter-field input:focus,
.filter-field select:focus {
  outline: none;
  border-color: var(--accent, #0ea5e9);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  grid-column: 1 / -1;
}

.products-list-summary {
  font-size: 12px;
  color: var(--muted, #8b94a3);
}

.product-photo-cell {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(15, 23, 42, 0.08));
  background: var(--bg-soft, #f6f7fb);
  object-fit: cover;
  flex-shrink: 0;
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.product-cell .product-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-cell .product-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.product-cell .product-id {
  font-size: 11px;
  color: var(--muted, #8b94a3);
}

.trend-up { color: #16a34a; font-weight: 600; }
.trend-down { color: #dc2626; font-weight: 600; }
.trend-flat { color: var(--muted, #8b94a3); }

td.muted, .muted { color: var(--muted, #8b94a3); }
