/* =========================================================================
   STYLE.CSS - drift-watch (LiteLLM Ice-Blue & Soft Indigo Design System)
========================================================================= */

:root {
  /* LiteLLM Color Palette */
  --bg-body: #ffffff;
  --bg-card: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  
  --blue-ice: #eff6ff;
  --blue-soft: #e0e7ff;
  --indigo-border: #c7d2fe;
  
  --status-green: #10b981;
  --status-amber: #f59e0b;
  --status-red: #ef4444;
  
  --code-bg: #f8fafc;
  
  /* Layout */
  --max-width: 1120px;
  --nav-height: 64px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.card-shadow {
  box-shadow: 0 4px 24px -2px rgba(99, 102, 241, 0.08), 0 2px 8px -1px rgba(15, 23, 42, 0.04);
}

/* ================== TOP ANNOUNCEMENT BAR (LiteLLM Style) ================== */
.announcement-bar {
  background: #090d16;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #1e293b;
}

.announcement-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-bar code {
  background: #1e293b;
  color: #38bdf8;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
}

.announcement-link {
  color: #f8fafc;
  font-weight: 600;
  transition: color 0.15s;
}

.announcement-link:hover { color: #38bdf8; text-decoration: none; }

/* ================== NAVBAR ================== */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: #e0e7ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--text-main); text-decoration: none; }

.btn-nav-cta {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.25);
  transition: all 0.2s;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(99, 102, 241, 0.35); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  min-height: 44px;
  min-width: 44px;
}

/* ================== SECTIONS ================== */
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 680px;
}

/* ================== BUTTONS ================== */
.btn-primary, .btn-outline, .btn-text, .btn-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover { 
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
  text-decoration: none; 
}

.btn-outline {
  background: var(--bg-body);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-outline:hover { 
  border-color: var(--text-main); 
  text-decoration: none; 
  background: var(--bg-card);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  min-height: auto;
}

.btn-text {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 8px 12px;
  font-weight: 500;
}
.btn-text:hover { color: var(--text-main); text-decoration: none; background: var(--bg-card); border-radius: 6px; }

/* ================== HERO (LiteLLM Ice-Blue Glow) ================== */
.hero {
  padding: 100px 0 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #e0e7ff 35%, #ffffff 70%);
}
.hero-container { max-width: 860px; display: flex; flex-direction: column; align-items: center; }

.hero-eyebrow-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.hero-badge-purple { background: #e0e7ff; color: #4338ca; border-color: #c7d2fe; }
.hero-badge-blue { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.hero-badge-green { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.6;
}
.hero-sub code {
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
  border: 1px solid var(--indigo-border);
  color: var(--primary);
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* Quickstart Terminal Copy Pill */
.hero-pip-box {
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 48px;
}
.hero-pip-box:hover {
  border-color: #38bdf8;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.2);
}
.pip-prompt { color: #64748b; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.hero-pip-box code { color: #38bdf8; font-family: 'JetBrains Mono', monospace; font-size: 0.92rem; font-weight: 600; }
.btn-copy {
  background: #1e293b;
  color: #94a3b8;
  border: 1px solid #334155;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.hero-pip-box:hover .btn-copy { background: #334155; color: #f8fafc; }

/* Hero Live Widget */
.hero-widget {
  background: #ffffff;
  border: 1px solid var(--indigo-border);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: left;
  width: 100%;
}
.hero-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hero-widget-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.live-proof-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #a7f3d0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot-sm {
  width: 6px; height: 6px; background: #059669; border-radius: 50%; display: inline-block;
}

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

.live-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.green { background: var(--status-green); }
.dot.amber { background: var(--status-amber); }
.dot.red { background: var(--status-red); }

/* ================== WHY IT MATTERS ================== */
.why-section { background: #ffffff; border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--indigo-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-red { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.icon-amber { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.icon-green { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }

.why-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.badge-red { color: #dc2626; }
.badge-amber { color: #d97706; }
.badge-green { color: #059669; }

.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.why-card code { background: #f1f5f9; padding: 2px 5px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.85em; }

/* ================== DEVELOPER TOOLING & CLI SECTION ================== */
.cli-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cli-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.cli-cards { display: flex; flex-direction: column; gap: 16px; }

.cli-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}
.cli-card:hover {
  border-color: var(--indigo-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.1);
}

.cli-card-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.badge-blue { color: var(--primary); }
.badge-green { color: #059669; }

.cli-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.cli-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 12px; }

.cli-code-snippet {
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-main);
}

/* Dark Terminal Window */
.cli-terminal-window {
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
}
.terminal-header {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  position: relative;
}
.term-dots { display: flex; gap: 6px; }
.tdot { width: 10px; height: 10px; border-radius: 50%; }
.tdot.red { background: #ff5f56; }
.tdot.yellow { background: #ffbd2e; }
.tdot.green { background: #27c93f; }
.term-title {
  position: absolute; left: 0; right: 0; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #64748b;
}

.terminal-body {
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
  white-space: pre;
  overflow-x: auto;
}
.t-prompt { color: #38bdf8; font-weight: 700; }
.t-panel { color: #818cf8; }
.t-head { color: #94a3b8; font-weight: 700; }
.t-green { color: #34d399; font-weight: 700; }
.t-dim { color: #64748b; }

/* ================== SYSTEM ARCHITECTURE ================== */
.architecture-section { background: var(--bg-body); }
.flow-card {
  background: #ffffff;
  border: 1px solid var(--indigo-border);
  border-radius: 14px;
  overflow: hidden;
}

.flow-card-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
}

.flow-metrics {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.flow-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 28px;
  gap: 8px;
  overflow-x: auto;
}

.flow-step-box {
  flex: 1;
  min-width: 170px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.flow-step-box:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.12);
}

.step-box-active {
  border: 1.5px solid #818cf8;
  background: #f8fafc;
}

.step-box-alert {
  border: 1.5px solid #f87171;
  background: #fff5f5;
}

.step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.tag-blue { color: var(--primary); }
.tag-red { color: #dc2626; }

.step-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.step-desc code { font-family: 'JetBrains Mono', monospace; font-size: 0.9em; background: #e2e8f0; padding: 1px 3px; border-radius: 3px; }

.flow-connector {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ================== DASHBOARD ================== */
.dashboard-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.realtime-notice-badge {
  background: #ffffff;
  border: 1px solid #a7f3d0;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dashboard-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.last-updated { font-size: 0.85rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.dash-error { background: #fee2e2; color: #b91c1c; padding: 16px; border-radius: 8px; margin-bottom: 24px; }
.hidden { display: none !important; }

/* Dashboard Table */
.table-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.dash-table th {
  background: var(--bg-card);
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.dash-table tbody tr {
  transition: background-color 0.15s;
}
.dash-table tbody tr:hover {
  background-color: #f1f5f9;
}
.dash-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.dash-table tr:last-child td { border-bottom: none; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.status-badge.healthy {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}
.status-badge.drifted {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.score-badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

/* ================== PLAYGROUND ================== */
.playground-section { background: var(--bg-body); }
.pg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pg-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pg-lbl { font-weight: 700; font-size: 0.9rem; }
.pg-textarea {
  width: 100%; height: 230px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: vertical;
  background: #ffffff;
}
.pg-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pg-error { color: var(--status-red); font-size: 0.9rem; font-weight: 600; }
.pg-results {
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 24px;
}
.pg-results pre { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; overflow-x: auto; }

/* ================== CASE STUDY ================== */
.case-study-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.cs-container { max-width: 720px; margin: 0 auto; }
.cs-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.cs-content h3 { margin: 24px 0 8px; font-size: 1.15rem; font-weight: 700; }
.cs-content h3:first-child { margin-top: 0; }
.cs-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.6; }
.cs-content code { background: #e2e8f0; padding: 2px 5px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.88em; }
.cs-closing { margin-top: 28px; font-weight: 600; color: var(--text-main); }
.cs-link { color: var(--primary); font-weight: 700; }

/* ================== FOOTER ================== */
.footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; }
.footer-link { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }
.footer-link:hover { color: var(--text-main); }

/* =========================================================================
   RESPONSIVE
========================================================================= */

@media (max-width: 1023px) {
  .hero-title { font-size: 2.7rem; }
  .why-grid { grid-template-columns: 1fr; }
  .cli-grid { grid-template-columns: 1fr; }
  .flow-steps-grid { flex-direction: column; align-items: stretch; gap: 16px; }
  .flow-connector { transform: rotate(90deg); }
}

@media (max-width: 767px) {
  .hero { padding: 80px 0 32px; }
  .hero-title { font-size: 2.1rem; }
  .hero-cta-wrap { flex-direction: column; width: 100%; }
  .hero-live-pills { flex-direction: column; }
  .announcement-container { flex-direction: column; gap: 4px; text-align: center; }
  
  /* Nav Hamburger */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  .nav-links.active { display: flex; }
  
  /* Playground */
  .pg-grid { grid-template-columns: 1fr; }
  
  /* Dashboard Table -> Cards */
  .dash-table thead { display: none; }
  .dash-table, .dash-table tbody, .dash-table tr, .dash-table td {
    display: block; width: 100%;
  }
  .dash-table tr {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }
  .dash-table tr:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .dash-table td {
    padding: 8px 16px;
    text-align: right;
    border-bottom: none;
    position: relative;
    padding-left: 40%;
  }
  .dash-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    width: 35%;
    padding-right: 10px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  
  .footer-container { flex-direction: column; text-align: center; gap: 16px; }
}
