﻿/* ═══════════════════════════════════════════════════════════════════════════
   Verity HCLM Design System — Shared Theme
   Provider Claims Command Center
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-light:  #112240;
  --navy-mid:    #0D1B35;
  --navy-card:   #0F1F3D;
  --teal:        #00B4A0;
  --teal-dark:   #008F7E;
  --green:       #2ECC9A;
  --gold:        #E8A020;
  --red:         #E05252;
  --blue:        #4A9EE0;
  --purple:      #7C5CFC;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --navy-border: rgba(255,255,255,0.07);
  --navy-border2:rgba(255,255,255,0.12);
  --sidebar-w:   220px;
  --header-h:    56px;
  --radius:      10px;
  --radius-sm:   6px;
  --shadow:      0 4px 16px rgba(0,0,0,0.3);
  --transition:  all 0.18s ease;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── App Shell ────────────────────────────────────────────────────────────── */
.app-shell {
  display: flex;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: var(--navy);
}

/* ── Topbar ───────────────────────────────────────────────────────────────── */
.topbar {
  height: var(--header-h);
  background: var(--navy-light);
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), #00E5CF);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 14px; font-weight: bold;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.topbar-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.topbar-name span { color: var(--teal); }
.topbar-divider { width: 1px; height: 28px; background: var(--navy-border); }
.topbar-subtitle {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}
.topbar-hospital {
  font-size: 12px;
  color: var(--gray-400);
  margin-left: 4px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.topbar-notif {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.topbar-notif:hover { border-color: var(--teal); color: var(--teal); }
.notif-dot {
  position: absolute; top: 5px; right: 5px;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  border: 1px solid var(--navy-light);
}
.topbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 20px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  cursor: pointer;
}
.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.user-name { font-size: 12px; font-weight: 500; }
.user-role { font-size: 10px; color: var(--gray-400); }
.topbar-logout-btn {
  padding: 5px 12px;
  font-size: 11px;
  background: transparent;
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
}
.topbar-logout-btn:hover { border-color: var(--red); color: var(--red); }

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--navy-light);
  border-right: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-shrink: 0;
  padding: 8px 0 16px;
}
.sidebar-section {
  padding: 16px 14px 4px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  color: var(--gray-400);
  font-size: 12.5px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  border-left: 3px solid transparent;
  position: relative;
}
.nav-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.nav-item.active {
  color: var(--teal);
  background: rgba(0,180,160,0.1);
  border-left-color: var(--teal);
}
.nav-icon {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.nav-badge {
  margin-left: auto;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}

/* ── Page Header ──────────────────────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-header-left { flex: 1; }
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.page-subtitle {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.page-header-actions { display: flex; gap: 8px; align-items: center; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--navy-border2);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-success {
  background: rgba(46,204,154,0.15);
  color: var(--green);
  border-color: rgba(46,204,154,0.3);
}
.btn-success:hover { background: rgba(46,204,154,0.25); }
.btn-danger {
  background: rgba(224,82,82,0.12);
  color: var(--red);
  border-color: rgba(224,82,82,0.25);
}
.btn-danger:hover { background: rgba(224,82,82,0.2); }
.btn-gold {
  background: rgba(232,160,32,0.15);
  color: var(--gold);
  border-color: rgba(232,160,32,0.3);
}
.btn-gold:hover { background: rgba(232,160,32,0.25); }
.btn-blue {
  background: rgba(74,158,224,0.15);
  color: var(--blue);
  border-color: rgba(74,158,224,0.3);
}
.btn-blue:hover { background: rgba(74,158,224,0.25); }
.btn-sm { padding: 5px 10px; font-size: 11px; }
.btn-xs { padding: 3px 8px; font-size: 10px; }
.btn-icon { padding: 7px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-title {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}
.card-body { padding: 16px 18px; }
.card-footer {
  padding: 10px 18px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── KPI / Stat Cards ─────────────────────────────────────────────────────── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.kpi-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.kpi-card:hover { border-color: var(--navy-border2); }
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent-color, var(--teal));
}
.kpi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 6px;
}
.kpi-value {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-sub {
  font-size: 11px;
  color: var(--gray-400);
}
.kpi-trend {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}
.kpi-trend.up   { color: var(--green); }
.kpi-trend.down { color: var(--red); }

/* ── Tables ───────────────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.data-table thead th {
  background: var(--navy-mid);
  padding: 10px 12px;
  text-align: left;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--navy-border);
  cursor: pointer;
  user-select: none;
}
.data-table thead th:hover { color: var(--white); }
.data-table tbody tr {
  border-bottom: 1px solid var(--navy-border);
  transition: background 0.1s;
}
.data-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.data-table tbody td {
  padding: 10px 12px;
  vertical-align: middle;
  white-space: nowrap;
}
.data-table tbody td.wrap { white-space: normal; }
.row-link { cursor: pointer; }
.col-id { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--teal); }
.col-amount { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-align: right; }
.col-name { font-weight: 500; }

/* ── Badges / Status ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.badge-green  { background: rgba(46,204,154,0.15);  color: #2ECC9A; }
.badge-teal   { background: rgba(0,180,160,0.15);   color: #00B4A0; }
.badge-gold   { background: rgba(232,160,32,0.15);  color: #E8A020; }
.badge-red    { background: rgba(224,82,82,0.15);   color: #E05252; }
.badge-blue   { background: rgba(74,158,224,0.15);  color: #4A9EE0; }
.badge-gray   { background: rgba(148,163,184,0.15); color: #94A3B8; }
.badge-purple { background: rgba(124,92,252,0.15);  color: #7C5CFC; }
.badge-navy   { background: rgba(255,255,255,0.08); color: var(--gray-400); }
.badge-lg { padding: 5px 12px; font-size: 12px; border-radius: 16px; }

/* Aging badge */
.aging-ok   { color: var(--green); font-weight: 600; }
.aging-warn { color: var(--gold);  font-weight: 600; }
.aging-hot  { color: var(--red);   font-weight: 600; }

/* ── Filter Bar ───────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  align-items: center;
}
.filter-input {
  background: var(--navy-light);
  border: 1px solid var(--navy-border2);
  color: var(--white);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  outline: none;
  transition: var(--transition);
}
.filter-input:focus { border-color: var(--teal); }
.filter-input::placeholder { color: var(--gray-500); }
.filter-input.search { min-width: 220px; }
select.filter-input option { background: var(--navy-light); }

/* ── Tabs ─────────────────────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--navy-border);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-item {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  user-select: none;
}
.tab-item:hover { color: var(--white); }
.tab-item.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-content { display: none; padding: 20px 0 0; }
.tab-content.active { display: block; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border2);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus { border-color: var(--teal); }
.form-control::placeholder { color: var(--gray-500); }
select.form-control option { background: var(--navy-light); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 11px; color: var(--gray-500); margin-top: 4px; }
.form-row { display: grid; gap: 14px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.form-section {
  margin-bottom: 24px;
}
.form-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  border-bottom: 1px solid var(--navy-border);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

/* ── Claim Summary Header ─────────────────────────────────────────────────── */
.claim-hero {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.claim-hero-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.claim-id-block { flex: 1; min-width: 200px; }
.claim-id-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.claim-id-value {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.claim-id-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.claim-amounts {
  display: flex;
  gap: 0;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.amt-block {
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid var(--navy-border);
  min-width: 110px;
}
.amt-block:last-child { border-right: none; }
.amt-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-400); font-weight: 600; }
.amt-value { font-family: 'JetBrains Mono', monospace; font-size: 15px; margin-top: 3px; font-weight: 500; }
.amt-value.billed { color: var(--white); }
.amt-value.approved { color: var(--green); }
.amt-value.denied { color: var(--red); }
.amt-value.paid { color: var(--teal); }
.claim-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px 20px;
}
.meta-item {}
.meta-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.6px; }
.meta-value { font-size: 13px; font-weight: 500; margin-top: 2px; }
.claim-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--navy-border);
  margin-top: 14px;
}

/* ── Timeline ─────────────────────────────────────────────────────────────── */
.timeline { position: relative; padding: 4px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 1px;
  background: var(--navy-border2);
}
.timeline-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
}
.timeline-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  border: 2px solid var(--navy-border2);
  background: var(--navy-card);
  z-index: 1;
}
.timeline-dot.current {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  font-weight: 700;
}
.timeline-dot.done { background: var(--navy-mid); border-color: var(--green); color: var(--green); }
.timeline-dot.failed { border-color: var(--red); color: var(--red); }
.timeline-dot.pending { border-color: var(--gold); color: var(--gold); }
.timeline-body { flex: 1; padding-top: 4px; }
.timeline-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.timeline-meta { font-size: 11px; color: var(--gray-400); }
.timeline-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--gray-400);
  background: var(--navy-mid);
  border-left: 3px solid var(--navy-border2);
  padding: 6px 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

/* ── Messages / Activity Feed ─────────────────────────────────────────────── */
.msg-thread { display: flex; flex-direction: column; gap: 12px; }
.msg-item {
  display: flex;
  gap: 10px;
}
.msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.msg-avatar.internal  { background: rgba(0,180,160,0.2);   color: var(--teal); }
.msg-avatar.payer     { background: rgba(74,158,224,0.2);  color: var(--blue); }
.msg-avatar.system    { background: rgba(148,163,184,0.2); color: var(--gray-400); }
.msg-avatar.doctor    { background: rgba(124,92,252,0.2);  color: var(--purple); }
.msg-avatar.escalation{ background: rgba(224,82,82,0.2);   color: var(--red); }
.msg-body { flex: 1; }
.msg-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.msg-sender { font-size: 12px; font-weight: 600; }
.msg-time { font-size: 11px; color: var(--gray-400); margin-left: auto; white-space: nowrap; }
.msg-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.msg-card.payer-msg { border-color: rgba(74,158,224,0.25); }
.msg-card.system-event {
  background: transparent;
  border: none;
  color: var(--gray-400);
  font-style: italic;
  padding: 2px 0;
}
.msg-card.escalation { border-color: rgba(224,82,82,0.25); }
.msg-attachments { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 6px; }
.msg-attach-tag {
  background: var(--navy-light);
  border: 1px solid var(--navy-border2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  color: var(--gray-400);
}

/* ── Document Grid ────────────────────────────────────────────────────────── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.doc-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: var(--transition);
  cursor: pointer;
}
.doc-card:hover { border-color: var(--teal); }
.doc-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.doc-name { font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.doc-meta { font-size: 10px; color: var(--gray-400); }
.doc-status { margin-top: 6px; }

/* ── Modals ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--navy-light);
  border: 1px solid var(--navy-border2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow);
  animation: slideUp 0.2s ease;
}
.modal-box.lg { max-width: 780px; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
}
.modal-title { font-size: 15px; font-weight: 600; flex: 1; }
.modal-close {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: var(--gray-400);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.modal-close:hover { background: var(--navy-mid); color: var(--white); }
.modal-body { padding: 20px; }
.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ── Toast Notifications ──────────────────────────────────────────────────── */
#ceToastContainer {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--navy-light);
  border: 1px solid var(--navy-border2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12.5px;
  max-width: 320px;
  box-shadow: var(--shadow);
  animation: slideUp 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--blue); }
.toast.warning { border-left: 3px solid var(--gold); }

/* ── Detail Rows ──────────────────────────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 20px;
}
.detail-item {}
.detail-label {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}
.detail-value { font-size: 13px; margin-top: 3px; }
.detail-divider {
  border: none;
  border-top: 1px solid var(--navy-border);
  margin: 16px 0;
}

/* ── Claim Lines Table ────────────────────────────────────────────────────── */
.claim-lines-table tbody td.svc-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue);
}
.line-denied { color: var(--red); }
.line-approved { color: var(--green); }

/* ── Empty State ──────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}
.empty-state-icon { font-size: 36px; margin-bottom: 10px; opacity: 0.5; }
.empty-state-text { font-size: 13px; }

/* ── Charts (CSS-based) ───────────────────────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { font-size: 11px; color: var(--gray-400); width: 130px; text-align: right; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-track { flex: 1; height: 8px; background: var(--navy-mid); border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.bar-count { font-size: 11px; color: var(--gray-400); width: 30px; flex-shrink: 0; }

/* ── Misc Utilities ───────────────────────────────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-red    { color: var(--red); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--gray-400); }
.text-mono   { font-family: 'JetBrains Mono', monospace; }
.text-serif  { font-family: 'DM Serif Display', serif; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.text-sm     { font-size: 11px; }
.text-xs     { font-size: 10px; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.flex  { display: flex; }
.flex-1 { flex: 1; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 12px;
}
.info-alert {
  background: rgba(74,158,224,0.1);
  border: 1px solid rgba(74,158,224,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--blue);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.warn-alert {
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--gold);
}

/* ── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-border2); border-radius: 3px; }

/* ── View Toggle Pill (topbar) ───────────────────────────────────────────── */
.view-toggle-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(0,180,160,0.12); border: 1px solid rgba(0,180,160,0.25);
  font-size: 11px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.3px; cursor: default;
}
.view-toggle-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  display: inline-block;
}

/* ── Current Projection Header ───────────────────────────────────────────── */
.projection-header {
  background: var(--navy-card);
  border: 1px solid var(--navy-border2);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 20px;
}
.proj-toprow {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.proj-id-block {}
.proj-id {
  font-size: 22px; font-weight: 800; color: var(--white); font-family: 'DM Serif Display', serif;
  letter-spacing: -0.5px; line-height: 1.1;
}
.proj-subline {
  font-size: 12px; color: var(--muted); margin-top: 3px;
}
.proj-patient-payer {
  text-align: right;
}
.proj-patient-name {
  font-size: 15px; font-weight: 700; color: var(--white);
}
.proj-payer-name {
  font-size: 12px; color: var(--teal); margin-top: 2px;
}
.proj-member-id {
  font-size: 11px; color: var(--muted); margin-top: 1px;
}

.proj-financials {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; border: 1px solid var(--navy-border2); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 16px;
}
.proj-fin-item {
  padding: 12px 16px; border-right: 1px solid var(--navy-border2);
  background: rgba(0,0,0,0.2);
}
.proj-fin-item:last-child { border-right: none; }
.proj-fin-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--muted); margin-bottom: 4px;
}
.proj-fin-value {
  font-size: 16px; font-weight: 800; color: var(--white); font-family: 'DM Serif Display', serif;
}
.proj-fin-item.fin-outstanding .proj-fin-value { color: var(--gold); }
.proj-fin-item.fin-denied .proj-fin-value { color: #E05252; }
.proj-fin-item.fin-paid .proj-fin-value { color: #2ECC9A; }

.proj-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 12px 0; border-top: 1px solid var(--navy-border2); margin-bottom: 12px;
}
.proj-meta-item { display: flex; flex-direction: column; gap: 2px; }
.proj-meta-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.proj-meta-value { font-size: 12px; font-weight: 600; color: var(--white); }
.proj-meta-value a { color: var(--teal); text-decoration: none; }

.proj-risk-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap;
}
.proj-risk-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); }

.risk-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 12px; font-size: 11px; font-weight: 600;
}
.risk-tag.risk-high   { background: rgba(224,82,82,0.15);  border: 1px solid rgba(224,82,82,0.3);  color: #E05252; }
.risk-tag.risk-warn   { background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3); color: var(--gold); }
.risk-tag.risk-info   { background: rgba(74,158,224,0.15); border: 1px solid rgba(74,158,224,0.3); color: #4A9EE0; }
.risk-tag.risk-ok     { background: rgba(46,204,154,0.12); border: 1px solid rgba(46,204,154,0.25); color: #2ECC9A; }

.proj-actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}

/* ── AI Operational Insights Panel ───────────────────────────────────────── */
.ai-panel {
  border: 1px solid rgba(0,180,160,0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,180,160,0.05) 0%, rgba(18,38,60,0.8) 100%);
  overflow: hidden;
  margin-top: 2px;
}
.ai-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid rgba(0,180,160,0.15);
  gap: 20px; flex-wrap: wrap;
}
.ai-panel-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--teal);
}
.ai-icon { font-size: 10px; color: var(--teal); }
.ai-score-wrap {
  display: flex; align-items: center; gap: 10px;
}
.ai-score-label {
  font-size: 11px; color: var(--muted); font-weight: 600;
}
.ai-score-bar-track {
  width: 120px; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden;
}
.ai-score-bar-fill {
  height: 100%; border-radius: 3px; transition: width 0.6s ease;
}
.ai-score-num {
  font-size: 14px; font-weight: 800; font-family: 'DM Serif Display', serif;
  min-width: 38px; text-align: right;
}
.ai-panel-body {
  padding: 14px 18px;
}
.ai-section-title {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 6px;
}
.ai-list { display: flex; flex-direction: column; gap: 5px; }
.ai-list-item { font-size: 12px; line-height: 1.5; }
.ai-strengths .ai-list-item { color: #2ECC9A; }
.ai-concerns  .ai-list-item { color: var(--gold); }
.ai-recs      .ai-list-item { color: var(--text); }
.ai-payer-note {
  margin-top: 12px; padding: 10px 12px;
  background: rgba(255,255,255,0.03); border-left: 3px solid rgba(0,180,160,0.4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 11px; color: var(--muted); line-height: 1.6;
}
.ai-payer-label {
  display: block; font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--teal); margin-bottom: 4px;
}
.ai-panel-footer {
  padding: 9px 18px; background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 11px; color: var(--muted);
}
.ai-trigger-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  background: rgba(0,180,160,0.12); border: 1px solid rgba(0,180,160,0.3);
  color: var(--teal); font-size: 11px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.15s, border-color 0.15s;
}
.ai-trigger-btn:hover {
  background: rgba(0,180,160,0.22); border-color: rgba(0,180,160,0.5);
}

/* ── Improved Timeline ───────────────────────────────────────────────────── */
.tl-container { display: flex; flex-direction: column; gap: 0; }
.tl-event {
  display: flex; gap: 14px; position: relative; padding-bottom: 24px;
}
.tl-event:last-child { padding-bottom: 0; }
.tl-left {
  display: flex; flex-direction: column; align-items: center; width: 32px; flex-shrink: 0;
}
.tl-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; border: 2px solid;
  z-index: 1;
}
.tl-dot.dot-status  { background: rgba(0,180,160,0.15); border-color: var(--teal); color: var(--teal); }
.tl-dot.dot-doc     { background: rgba(74,158,224,0.15); border-color: #4A9EE0; color: #4A9EE0; }
.tl-dot.dot-msg     { background: rgba(232,160,32,0.15); border-color: var(--gold); color: var(--gold); }
.tl-dot.dot-pay     { background: rgba(46,204,154,0.15); border-color: #2ECC9A; color: #2ECC9A; }
.tl-dot.dot-deny    { background: rgba(224,82,82,0.15); border-color: #E05252; color: #E05252; }
.tl-dot.dot-task    { background: rgba(124,92,252,0.15); border-color: #7C5CFC; color: #7C5CFC; }
.tl-dot.dot-system  { background: rgba(148,163,184,0.12); border-color: #94A3B8; color: #94A3B8; }
.tl-line {
  width: 2px; flex: 1; background: var(--navy-border2); margin-top: 2px;
}
.tl-body { flex: 1; padding-top: 4px; }
.tl-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px;
}
.tl-date  { font-size: 11px; color: var(--muted); font-weight: 600; }
.tl-actor { font-size: 11px; font-weight: 700; color: var(--white); }
.tl-role  { font-size: 10px; }
.tl-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; line-height: 1.4; }
.tl-detail { font-size: 11px; color: var(--muted); line-height: 1.5; }
.tl-transition {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 5px; font-size: 11px; color: var(--muted);
}
.tl-doc-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
  font-size: 11px; color: #4A9EE0; font-weight: 600;
}
.tl-notes {
  margin-top: 6px; padding: 8px 10px;
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  font-size: 11px; color: var(--muted); line-height: 1.5;
  font-style: italic; border-left: 2px solid var(--navy-border2);
}

/* ── Operational Messages / Activity Thread ──────────────────────────────── */
.msg-thread { display: flex; flex-direction: column; gap: 0; }
.msg-event {
  padding: 14px 0; border-bottom: 1px solid var(--navy-border2);
}
.msg-event:last-child { border-bottom: none; }
.msg-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 7px;
}
.msg-avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.msg-avatar-payer { background: #7C5CFC; }
.msg-avatar-sys   { background: #475569; }
.msg-actor-wrap { flex: 1; }
.msg-actor-name { font-size: 12px; font-weight: 700; color: var(--white); }
.msg-actor-role { font-size: 10px; color: var(--muted); }
.msg-ts { font-size: 10px; color: var(--muted); margin-left: auto; }
.msg-type-tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px;
  padding: 2px 7px; border-radius: 10px;
}
.msg-type-internal  { background: rgba(74,158,224,0.12); color: #4A9EE0; }
.msg-type-payer     { background: rgba(124,92,252,0.12); color: #7C5CFC; }
.msg-type-escalation{ background: rgba(224,82,82,0.12);  color: #E05252; }
.msg-type-document  { background: rgba(46,204,154,0.12); color: #2ECC9A; }
.msg-type-system    { background: rgba(148,163,184,0.1); color: #94A3B8; }
.msg-body { font-size: 13px; color: var(--text); line-height: 1.6; padding-left: 38px; }
.msg-doc-ref {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; padding-left: 38px;
  font-size: 11px; color: #4A9EE0; font-weight: 600;
}

/* ── Aging Badges ─────────────────────────────────────────────────────────── */
.aging-ok   { color: #2ECC9A; font-weight: 700; font-size: 12px; }
.aging-warn { color: var(--gold); font-weight: 700; font-size: 12px; }
.aging-hot  { color: #E05252; font-weight: 700; font-size: 12px; }

/* ── Topbar refinements ───────────────────────────────────────────────────── */
.topbar-subtitle { font-size: 11px; color: var(--muted); }
.topbar-hospital  { font-size: 11px; color: var(--teal); font-weight: 600; }
.topbar-notif {
  display: flex; align-items: center; position: relative; cursor: pointer;
  color: var(--muted); font-size: 16px;
}
.notif-dot {
  position: absolute; top: 1px; right: -2px;
  width: 7px; height: 7px; border-radius: 50%; background: #E05252;
}
.topbar-logout-btn {
  background: transparent; border: 1px solid var(--navy-border2);
  color: var(--muted); font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: var(--radius-sm); cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.topbar-logout-btn:hover { color: var(--white); border-color: var(--navy-border); }

/* ── Section label in projection / detail pages ───────────────────────────── */
.detail-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.detail-section-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal);
}

/* ── Claim workbench risk column ─────────────────────────────────────────── */
.risk-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}
.risk-dot.high   { background: #E05252; }
.risk-dot.warn   { background: var(--gold); }
.risk-dot.ok     { background: #2ECC9A; }
.risk-cell { display: flex; align-items: center; gap: 6px; font-size: 11px; }

/* ── Compact detail row groups ────────────────────────────────────────────── */
.detail-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.detail-grid-2 {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.dg-item {}
.dg-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.dg-value { font-size: 13px; font-weight: 600; color: var(--white); }
.dg-value.muted { color: var(--muted); }

/* ── Collapsible Sidebar Sections ────────────────────────────────────────── */
.sidebar-section.collapsible {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}
.sidebar-section.collapsible:hover { color: var(--white); }
.section-caret {
  font-size: 10px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.sidebar-section.collapsed .section-caret { color: var(--muted); }
.nav-section-items {
  overflow: hidden;
  max-height: 600px;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  opacity: 1;
}
.nav-section-items.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

/* ── New module status badges ─────────────────────────────────────────────── */
.badge-purple2 { background: rgba(124,92,252,0.12); color: #7C5CFC; border-color: rgba(124,92,252,0.2); }
.badge-brown  { background: rgba(180,120,80,0.12);  color: #C0855A; border-color: rgba(180,120,80,0.2); }
.badge-olive  { background: rgba(130,140,60,0.12);  color: #9CAB55; border-color: rgba(130,140,60,0.2); }

/* ── Provider / Procedure / Inventory cards ───────────────────────────────── */
.provider-card {
  background: var(--navy-card); border: 1px solid var(--navy-border2);
  border-radius: var(--radius); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.15s;
}
.provider-card:hover { border-color: var(--teal); }
.provider-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #005F8A);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.provider-info {}
.provider-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.provider-specialty { font-size: 11px; color: var(--teal); font-weight: 600; margin-bottom: 4px; }
.provider-meta { font-size: 11px; color: var(--muted); }

/* Network status badges */
.net-in  { color: #2ECC9A; font-weight: 700; font-size: 11px; }
.net-out { color: #E05252; font-weight: 700; font-size: 11px; }
.net-unk { color: #94A3B8; font-weight: 600; font-size: 11px; }

/* Procedure denial risk */
.risk-low  { color: #2ECC9A; font-weight: 700; }
.risk-med  { color: #E8A020; font-weight: 700; }
.risk-high { color: #E05252; font-weight: 700; }

/* Stock level indicators */
.stock-ok   { color: #2ECC9A; font-weight: 700; }
.stock-low  { color: #E8A020; font-weight: 700; }
.stock-out  { color: #E05252; font-weight: 700; }

/* Referral status */
.ref-status-done { color: #2ECC9A; font-weight: 700; }
.ref-status-pend { color: #E8A020; font-weight: 700; }
.ref-status-sched{ color: #4A9EE0; font-weight: 700; }

/* Patient responsibility breakdown */
.resp-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--navy-border2); font-size: 12px;
}
.resp-item:last-child { border-bottom: none; }
.resp-type { color: var(--muted); font-size: 10px; }
.resp-amount { font-weight: 700; color: var(--gold); }

/* Operational insights page */
.insight-card {
  background: var(--navy-card); border: 1px solid var(--navy-border2);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px;
}
.insight-rank {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,180,160,0.15); color: var(--teal);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.insight-urgency-Critical { color: #E05252; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.insight-urgency-High     { color: #E8A020; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.insight-urgency-Medium   { color: #4A9EE0; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ── Operational state bar ────────────────────────────────────────────────── */
.workflow-state-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.2); border-radius: var(--radius-sm);
  border: 1px solid var(--navy-border2);
  font-size: 11px; flex-wrap: wrap;
}
.ws-label { color: var(--muted); font-weight: 600; }
.ws-arrow { color: var(--muted); }
.ws-step  { color: var(--white); font-weight: 700; }
.ws-step.ws-done  { color: #2ECC9A; }
.ws-step.ws-active{ color: var(--teal); background: rgba(0,180,160,0.12); padding: 2px 8px; border-radius: 10px; }
.ws-step.ws-future{ color: var(--muted); }

::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
