/* ============================================================================
 * DARKSIDE tracker — single stylesheet, no frameworks.
 * Dark theme by default, mobile-first, minimal aesthetic (ref: rstr.wtf).
 * ========================================================================== */

/* ---------- tokens ---------- */

:root {
  --bg: #0a0b0f;
  --panel: #11131a;
  --panel-2: #171a24;
  --border: #232838;
  --border-soft: #1b1f2c;
  --text: #e8ebf3;
  --muted: #9aa3b8;
  --faint: #6b7488;

  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.12);
  --amber: #fbbf24;
  --amber-dim: rgba(251, 191, 36, 0.12);
  --red: #f87171;
  --red-dim: rgba(248, 113, 113, 0.12);
  --gray-dim: rgba(154, 163, 184, 0.14);

  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --container: 1080px;
}

/* ---------- reset / base ---------- */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5rem; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: 1.35rem; letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; }

p { margin: 0 0 1rem; }

.mono { font-family: var(--mono); font-size: 0.92em; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 36px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.section-head h2 { margin: 0; }

/* subtle top glow */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 420px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(74, 222, 128, 0.07), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ---------- entry disclaimer ---------- */

.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 9, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
}

.disclaimer-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

/* Saint Gaben icon, washed into the card background */
.disclaimer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/gaben.jpg") center / cover no-repeat;
  opacity: 0.16;
  filter: blur(1px) saturate(1.1);
  pointer-events: none;
}

.disclaimer-card > * { position: relative; }

.disclaimer-card h2 { margin-bottom: 14px; }

.disclaimer-card p {
  font-size: 0.94rem;
  color: #c4cbda;
  line-height: 1.65;
}

.disclaimer-btn {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

/* ---------- announcement banner (Polymarket-style) ---------- */

.announcement {
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
}
.announcement[hidden] { display: none; }

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

.announcement-text { flex: 1; line-height: 1.45; }

.announcement-close {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.55;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  flex: none;
}
.announcement-close:hover { opacity: 1; }

.announcement.is-info {
  background: var(--green-dim);
  color: #c9f2d9;
  border-bottom-color: rgba(74, 222, 128, 0.3);
}
.announcement.is-info .announcement-dot { background: var(--green); }

.announcement.is-warning {
  background: var(--amber-dim);
  color: #fde9b8;
  border-bottom-color: rgba(251, 191, 36, 0.3);
}
.announcement.is-warning .announcement-dot { background: var(--amber); }

.announcement.is-critical {
  background: var(--red-dim);
  color: #fbd2d2;
  border-bottom-color: rgba(248, 113, 113, 0.3);
}
.announcement.is-critical .announcement-dot { background: var(--red); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name { font-weight: 700; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.brand-logo {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.95rem;
}
.main-nav a {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
}
.main-nav a:hover { color: var(--text); background: var(--panel-2); }
.main-nav a[aria-current="page"] { color: var(--text); background: var(--panel-2); }

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* mode pill: LIVE / DEMO DATA / DATA ERROR */
.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: default;
  white-space: nowrap;
}
.mode-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.mode-live  { color: var(--green); background: var(--green-dim); border-color: rgba(74, 222, 128, 0.35); }
.mode-live::before { animation: pulse 2s ease-in-out infinite; }
.mode-demo  { color: var(--amber); background: var(--amber-dim); border-color: rgba(251, 191, 36, 0.35); }
.mode-error { color: var(--red);   background: var(--red-dim);   border-color: rgba(248, 113, 113, 0.35); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.social-links { display: flex; gap: 6px; }

/* square icon buttons (X / Telegram), always visible */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  transition: color 0.15s, border-color 0.15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--faint); }
.icon-btn svg { width: 15px; height: 15px; fill: currentColor; }
.icon-btn.is-todo { opacity: 0.4; }

/* click-to-copy address plate (contract / fee wallet) */
.contract-plate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.contract-plate:hover { color: var(--green); border-color: var(--green); }
.contract-plate .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.contract-plate .val { color: var(--text); }
.contract-plate.is-todo { opacity: 0.55; cursor: default; }
.contract-plate.is-todo:hover { color: var(--muted); border-color: var(--border); }
.contract-plate.is-copied { color: var(--green); border-color: var(--green); border-style: solid; }

.btn.is-todo { opacity: 0.55; }

/* ETH vault card */
.eth-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.eth-value {
  font-family: var(--mono);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.eth-sub { font-size: 0.85rem; margin-top: 4px; max-width: 480px; }

.footer-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---------- hero ---------- */

.hero { padding: 64px 0 40px; }

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { margin-bottom: 14px; }
.hero h1 .accent { color: var(--green); }

.hero-tagline {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 26px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn:hover { border-color: var(--green); color: var(--text); }
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: #07130b;
}
.btn-primary:hover { background: #5eec8f; color: #07130b; }
.btn-ghost { background: transparent; }
.btn-danger { color: var(--red); border-color: rgba(248, 113, 113, 0.4); background: transparent; }
.btn-danger:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 7px 12px; font-size: 0.85rem; }

/* ---------- price widget ---------- */

.price-widget {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}

/* tracked item render, ghosted into the widget background */
.price-widget::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34%;
  height: 100%;
  transform: translateY(-50%);
  background: url("../assets/item.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.price-widget > * { position: relative; }
.price-widget-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-widget-value {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-widget-meta { margin-top: 8px; font-size: 0.88rem; }
.price-widget-empty { color: var(--muted); line-height: 1.6; }

/* ---------- stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.stat-value {
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 700;
}
.stat-sub { font-size: 0.8rem; margin-top: 4px; }

/* ---------- feed ---------- */

.feed { display: flex; flex-direction: column; gap: 10px; }

.feed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.feed-item { font-weight: 600; }
.feed-note { font-size: 0.85rem; margin-top: 2px; }

.feed-links { display: flex; gap: 12px; margin-top: 6px; }
.mini-link {
  font-size: 0.82rem;
  font-family: var(--mono);
  color: var(--muted);
  border-bottom: 1px dotted var(--faint);
}
.mini-link:hover { color: var(--green); border-bottom-color: var(--green); }

.feed-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.feed-date { font-size: 0.8rem; color: var(--faint); }
.feed-price { font-weight: 700; font-size: 1.05rem; }

/* ---------- badges ---------- */

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge.is-green { color: var(--green); background: var(--green-dim); }
.badge.is-amber { color: var(--amber); background: var(--amber-dim); }
.badge.is-gray  { color: var(--muted); background: var(--gray-dim); }

/* ---------- price chart ---------- */

.chart-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px 12px;
}

.chart-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 4px 14px;
}

.chart-tab {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.chart-tab:hover { color: var(--text); border-color: var(--faint); }
.chart-tab.is-active {
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.4);
  background: var(--green-dim);
}

.chart-wrap { position: relative; }

.chart-svg { display: block; width: 100%; touch-action: pan-y; }

.chart-tooltip {
  position: absolute;
  display: none;
  pointer-events: none;
  transform: translate(-50%, -135%);
  background: rgba(13, 15, 21, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  white-space: nowrap;
  z-index: 5;
}

.chart-dot-pulse { animation: chartpulse 2s ease-in-out infinite; }

@keyframes chartpulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}

.chart-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  padding: 10px 4px 2px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--muted);
}

.chip-sep { color: var(--faint); padding: 0 6px; }

.chart-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 0 4px;
  font-size: 0.8rem;
}

.chart-note {
  font-size: 0.78rem;
  color: var(--faint);
  font-family: var(--mono);
  max-width: 60%;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .chart-note { max-width: 100%; text-align: left; }
  .section-head { flex-direction: column; gap: 2px; }
}

/* ---------- table (tracker) ---------- */

.table-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}

.table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }

.table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(255, 255, 255, 0.015); }

.cell-note { font-size: 0.82rem; margin-top: 2px; }

/* ---------- empty / error states ---------- */

.empty-state {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 34px 20px;
}
.empty-state.is-error { color: var(--red); border-color: rgba(248, 113, 113, 0.4); }

/* ---------- proof section ---------- */

.proof-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-steps { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }
.proof-steps li { margin-bottom: 8px; }
.proof-steps code {
  font-family: var(--mono);
  font-size: 0.85em;
  color: var(--green);
  background: var(--green-dim);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ---------- about page ---------- */

.prose { max-width: 760px; }
.prose p {
  color: #c4cbda;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.prose .prose-final { color: var(--text); font-weight: 600; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  font-family: var(--mono);
  color: var(--green);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.risk-list { margin: 0; padding-left: 20px; color: var(--muted); }
.risk-list li { margin-bottom: 10px; }
.risk-list strong { color: var(--text); }

.kv-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.kv-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 500;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  white-space: nowrap;
  width: 180px;
}
.kv-table td { padding: 12px 18px; border-bottom: 1px solid var(--border-soft); }
.kv-table tr:last-child td, .kv-table tr:last-child th { border-bottom: none; }

.addr { font-family: var(--mono); font-size: 0.85rem; word-break: break-all; }

/* ---------- admin ---------- */

.admin-main { max-width: 860px; margin: 0 auto; padding: 40px 20px 60px; }

.login-card {
  max-width: 400px;
  margin: 8vh auto 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
}
.field textarea { font-family: var(--mono); font-size: 0.88rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-msg { font-size: 0.88rem; margin: 10px 0 0; }
.form-msg.is-error { color: var(--red); }
.form-msg.is-ok { color: var(--green); }

.admin-banner {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.admin-banner.is-warn { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(251, 191, 36, 0.35); }
.admin-banner.is-error { background: var(--red-dim); color: var(--red); border: 1px solid rgba(248, 113, 113, 0.35); }

.admin-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}
.admin-section h2 { margin-bottom: 4px; }
.admin-section .section-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.form-grid .span-2 { grid-column: span 2; }

.check-field { display: flex; align-items: end; padding-bottom: 16px; }
.check-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
}
.check-field input { width: auto; }

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 30px 0 40px;
  margin-top: 30px;
  color: var(--faint);
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  .main-nav { font-size: 0.88rem; margin-left: 0; }
  .header-inner { gap: 8px; flex-wrap: wrap; padding: 8px 0; }
  .social-links { display: none; }
  .hero { padding: 40px 0 28px; }

  .feed-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .feed-side { width: 100%; justify-content: space-between; }
  .feed-price { margin-left: auto; }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }

  .kv-table th { width: auto; display: block; border-bottom: none; padding-bottom: 2px; }
  .kv-table td { display: block; padding-top: 2px; }

  /* table -> cards */
  .table thead { display: none; }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin: 10px;
    overflow: hidden;
  }
  .table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    text-align: right;
  }
  .table td:last-child { border-bottom: none; }
  .table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    flex: none;
  }
  .table td[data-label="Item"], .table td[data-label="Item"]::before { text-align: left; }
}
