@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --red:            #E0291A;
  --red-hover:      #C02215;
  --red-light:      #FFF0EF;
  --red-mid:        #FFD6D3;
  --yellow:         #FFF3CD;
  --yellow-border:  #FFCA28;
  --green:          #E8F5E9;
  --green-dark:     #2E7D32;
  --blue-light:     #E3F2FD;
  --blue-dark:      #1565C0;
  --bg:             #F4F5F7;
  --white:          #FFFFFF;
  --border:         #E2E5EA;
  --text-primary:   #1A1D23;
  --text-secondary: #6B7280;
  --text-muted:     #717680;  /* darkened: was #9CA3AF (2.85:1), now 4.55:1 AA ✓ */
  --sidebar-bg:     #1A1D23;
  --font:           'IBM Plex Sans', sans-serif;
  --mono:           'IBM Plex Mono', monospace;
  --radius:         10px;
  --radius-sm:      6px;
  --shadow:         0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.5;
}

/* ── LAYOUT ── */
.layout        { display: flex; height: 100vh; overflow: hidden; }
.main-area     { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.content-wrap  { display: flex; flex: 1; overflow: hidden; }
.content       { flex: 1; overflow-y: auto; padding: 16px 20px; }

/* ── SIDEBAR ── */
.sidebar {
  width: 56px; background: var(--sidebar-bg);
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0; gap: 2px; flex-shrink: 0; z-index: 100;
}
.sidebar-logo {
  width: 36px; height: 36px; background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 14px;
  letter-spacing: -0.5px; text-decoration: none;
}
.sidebar-item {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #6B7280; transition: all 0.15s;
  text-decoration: none; position: relative;
}
.sidebar-item:hover  { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar-item.active { background: var(--red); color: #fff; }
.sidebar-item svg    { width: 18px; height: 18px; }
.sidebar-spacer      { flex: 1; }
.sidebar-tip {
  position: absolute; left: 52px; background: #1A1D23; color: #fff;
  padding: 4px 10px; border-radius: 6px; font-size: 11px; white-space: nowrap;
  pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 999;
  border: 1px solid rgba(255,255,255,0.1);
}
.sidebar-item:hover .sidebar-tip { opacity: 1; }

/* ── TOPBAR ── */
.topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 20px; height: 52px;
  gap: 12px; flex-shrink: 0;
}
.topbar-info     { flex: 1; }
.topbar-title    { font-size: 15px; font-weight: 600; }
.topbar-crumb    { font-size: 11px; color: var(--text-muted); }
.topbar-actions  { display: flex; align-items: center; gap: 8px; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px; width: 210px;
}
.search-box input {
  border: none; background: transparent; font-family: var(--font);
  font-size: 12px; color: var(--text-primary); outline: none; width: 100%;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box svg  { width: 14px; height: 14px; color: var(--text-muted); flex-shrink: 0; }
.icon-btn {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-secondary); transition: all 0.15s; border: none; background: none;
}
.icon-btn:hover { background: var(--bg); color: var(--text-primary); }
.icon-btn svg   { width: 16px; height: 16px; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 600; cursor: pointer;
}

/* ── PAGE TABS ── */
.page-tabs {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 20px;
  margin: -16px -20px 16px; overflow-x: auto;
}
.page-tab {
  padding: 12px 14px; font-size: 12px; font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.15s; margin-bottom: -1px; text-decoration: none;
}
.page-tab:hover  { color: var(--text-primary); }
.page-tab.active { color: var(--red); border-bottom-color: var(--red); }
.page-tab svg    { width: 13px; height: 13px; }
.tab-spacer      { flex: 1; }
.tab-actions     { display: flex; align-items: center; gap: 6px; padding: 6px 0; }

/* ── FILTER BAR ── */
.filter-bar  { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); background: var(--white);
  border-radius: 8px; padding: 6px 12px; font-size: 12px;
  font-family: var(--font); cursor: pointer; color: var(--text-secondary);
  transition: all 0.15s;
}
.filter-btn:hover           { border-color: var(--red); color: var(--red); }
.filter-btn svg             { width: 11px; height: 11px; }
.clear-btn  { color: var(--red); font-size: 12px; cursor: pointer; padding: 6px; font-weight: 500; }
.f-spacer   { flex: 1; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff; border: none; border-radius: 8px;
  padding: 7px 14px; font-size: 12px; font-family: var(--font); font-weight: 500;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s; text-decoration: none;
}
.btn-primary:hover  { background: #c02215; }
.btn-primary svg    { width: 13px; height: 13px; }
.btn-secondary {
  background: var(--white); color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-family: var(--font);
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.15s; text-decoration: none;
}
.btn-secondary:hover { background: var(--bg); color: var(--text-primary); }
.btn-secondary svg   { width: 13px; height: 13px; }

/* ── SEGMENT TABS ── */
.seg-bar { display: flex; gap: 4px; margin-bottom: 12px; flex-wrap: wrap; }
.seg-btn {
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 500;
  cursor: pointer; border: 1px solid var(--border); background: var(--white);
  color: var(--text-secondary); transition: all 0.15s;
  display: flex; align-items: center; gap: 6px;
}
.seg-btn:hover         { background: var(--bg); }
.seg-btn.active        { background: var(--red); color: #fff; border-color: var(--red); }
.seg-count             { font-family: var(--mono); font-size: 11px; }

/* ── STAT CARDS ── */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); }
.stat-card-title { font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.stat-boxes { display: flex; gap: 8px; }
.sbox { flex: 1; border-radius: 8px; padding: 10px 12px; background: var(--bg); }
.sbox.warn   { background: var(--yellow); }
.sbox.danger { background: var(--red-light); }
.sbox.urgent { background: var(--red); }
.sbox-lbl    { font-size: 10px; color: var(--text-secondary); margin-bottom: 3px; }
.sbox.urgent .sbox-lbl   { color: rgba(255,255,255,0.7); }
.sbox-val    { font-size: 22px; font-weight: 600; font-family: var(--mono); line-height: 1; }
.sbox.urgent .sbox-val   { color: #fff; }
.sbox.danger .sbox-val   { color: var(--red); }

/* ── SUMMARY STATS ROW ── */
.sum-row { display: grid; gap: 10px; margin-bottom: 14px; }
.sum-row.cols-4 { grid-template-columns: repeat(4,1fr); }
.sum-row.cols-3 { grid-template-columns: repeat(3,1fr); }
.sum-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.sum-lbl  { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.sum-val  { font-size: 22px; font-weight: 600; font-family: var(--mono); line-height: 1; }
.sum-sub  { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ── TABLE ── */
.table-wrap  { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.table-head  { padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.table-title { font-size: 12px; font-weight: 600; }
table        { width: 100%; border-collapse: collapse; }
thead th {
  padding: 9px 14px; text-align: left; font-size: 11px; font-weight: 600;
  color: var(--text-secondary); background: var(--bg);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
thead th:first-child { padding-left: 16px; width: 36px; }
.sort-th { display: inline-flex; align-items: center; gap: 3px; cursor: pointer; user-select: none; }
.sort-th svg { width: 10px; height: 10px; opacity: 0.4; }
tbody tr { border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: #FAFBFC; }
tbody td { padding: 10px 14px; font-size: 12px; }
tbody td:first-child { padding-left: 16px; }
.mono { font-family: var(--mono); font-size: 11px; }
.td-muted { color: var(--text-muted); font-size: 11px; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 500; white-space: nowrap;
}
.badge-dot       { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.b-pending       { background: #FFF8E1; color: #92600A; }
.b-active        { background: var(--green); color: var(--green-dark); }
.b-transit       { background: var(--blue-light); color: var(--blue-dark); }
.b-delayed       { background: var(--red-light); color: var(--red); }
.b-dispatch      { background: #F3F4FF; color: #4338CA; }
.b-available     { background: #E8F5E9; color: #2E7D32; }
.b-complete      { background: #E8F5E9; color: #2E7D32; }
.b-expired       { background: #F3F4F6; color: #4B5563; }  /* 5.7:1 AA ✓ */

/* ── ROW ACTIONS ── */
.row-acts  { display: flex; gap: 4px; align-items: center; }
.row-btn {
  padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 500;
  cursor: pointer; border: 1px solid var(--border); background: var(--white);
  color: var(--text-secondary); transition: all 0.15s; font-family: var(--font);
}
.row-btn:hover     { background: var(--bg); color: var(--text-primary); }
.row-btn.red       { border-color: var(--red-mid); color: var(--red); background: var(--red-light); }
.row-btn.red:hover { background: var(--red-mid); }
.row-btn.green     { border-color: #A5D6A7; color: var(--green-dark); background: var(--green); }

/* ── CHECKBOX ── */
.cb { width: 14px; height: 14px; accent-color: var(--red); cursor: pointer; }

/* ── PAGINATION ── */
.pagination {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-top: 1px solid var(--border);
}
.pg-info  { font-size: 11px; color: var(--text-muted); }
.pg-btns  { display: flex; gap: 3px; }
.pg-btn {
  width: 28px; height: 28px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; font-size: 12px;
  cursor: pointer; border: 1px solid var(--border); background: var(--white);
  color: var(--text-secondary); font-family: var(--mono); transition: all 0.15s;
}
.pg-btn.active     { background: var(--red); color: #fff; border-color: var(--red); }
.pg-btn:hover:not(.active) { background: var(--bg); }

/* ── PROGRESS BAR ── */
.prog-wrap  { display: flex; align-items: center; gap: 8px; }
.prog-bar   { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; flex: 1; max-width: 80px; }
.prog-fill  { height: 100%; background: var(--red); border-radius: 2px; }
.prog-fill.green { background: var(--green-dark); }
.prog-pct   { font-family: var(--mono); font-size: 11px; }

/* ── NOTES ── */
.notes-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.note-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; transition: box-shadow 0.15s;
}
.note-card:hover  { box-shadow: var(--shadow-md); }
.note-card.urgent { border-left: 3px solid var(--red); }
.note-hd          { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.note-title       { font-size: 13px; font-weight: 600; flex: 1; }
.note-urgent-tag  { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 10px; background: var(--red-light); color: var(--red); flex-shrink: 0; }
.note-body        { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; }
.note-ft          { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--text-muted); flex-wrap: wrap; }
.note-client      { background: var(--bg); padding: 2px 8px; border-radius: 10px; }

/* ── TRIP CARD ── */
.trip-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; margin-bottom: 8px;
  transition: border-color 0.15s;
}
.trip-card:hover    { border-color: #C8CDD5; }
.trip-hd            { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.driver-name        { font-size: 13px; font-weight: 600; }
.driver-meta        { font-size: 11px; color: var(--text-muted); }
.delay-tag          { background: var(--red-light); color: var(--red); border-radius: 20px; padding: 2px 10px; font-size: 11px; font-weight: 500; }
.trip-stats         { display: flex; gap: 16px; margin-left: auto; }
.tstat-lbl          { font-size: 10px; color: var(--text-muted); }
.tstat-val          { font-size: 12px; font-weight: 600; font-family: var(--mono); }
.tstat-val.red      { color: var(--red); }
.tstat-val.green    { color: var(--green-dark); }
.timeline           { display: flex; align-items: center; overflow-x: auto; gap: 0; }
.stop               { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 56px; }
.stop-circle {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; font-family: var(--mono); cursor: pointer;
}
.stop-circle.done   { background: var(--green); border-color: #43A047; color: var(--green-dark); }
.stop-circle.cur    { background: var(--red); border-color: var(--red); color: #fff; }
.stop-time          { font-size: 9px; font-family: var(--mono); color: var(--text-muted); }
.stop-delta         { font-size: 9px; font-family: var(--mono); font-weight: 600; }
.stop-delta.pos     { color: var(--red); }
.stop-delta.neg     { color: var(--green-dark); }
.stop-line          { flex: 1; height: 2px; background: var(--border); min-width: 16px; }
.stop-line.done     { background: #43A047; }

/* ── LOCATION CARDS ── */
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.loc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  display: flex; align-items: center; gap: 12px;
}
.loc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-icon svg { width: 16px; height: 16px; color: var(--red); }
.loc-name  { font-size: 13px; font-weight: 600; }
.loc-meta  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.loc-count { margin-left: auto; font-family: var(--mono); font-size: 16px; font-weight: 600; }

/* ── MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center; z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 12px; padding: 24px;
  width: 480px; max-width: 95vw; box-shadow: var(--shadow-md);
  transform: translateY(10px); transition: transform 0.2s;
  overflow: visible;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-title  { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.form-row     { margin-bottom: 14px; }
.form-label   { display: block; font-size: 12px; font-weight: 500; margin-bottom: 5px; }
.form-input {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 12px; font-family: var(--font); font-size: 12px;
  color: var(--text-primary); background: var(--white); outline: none; transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--red); }
.form-select {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 12px; font-family: var(--font); font-size: 12px;
  color: var(--text-primary); background: var(--white); outline: none;
  appearance: none; cursor: pointer;
}
.form-select:focus { border-color: var(--red); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── AI PANEL ── */
.ai-panel {
  width: 300px; background: var(--white); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; flex-shrink: 0; transition: width 0.2s;
}
.ai-panel.closed { width: 0; overflow: hidden; border-left: none; }
.ai-hd {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.ai-logo {
  width: 28px; height: 28px; background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-logo svg     { width: 14px; height: 14px; color: #fff; }
.ai-title        { font-size: 13px; font-weight: 600; }
.ai-subtitle     { font-size: 10px; color: var(--text-muted); }
.ai-msgs         { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.ai-msg-user {
  background: var(--red); color: #fff; padding: 8px 12px;
  border-radius: 10px 10px 4px 10px; font-size: 12px; line-height: 1.5;
  align-self: flex-end; max-width: 88%;
}
.ai-msg-bot {
  background: var(--bg); padding: 9px 12px;
  border-radius: 10px 10px 10px 4px; font-size: 12px; line-height: 1.5;
  align-self: flex-start; max-width: 92%; border: 1px solid var(--border);
}
.ai-thinking     { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; margin-top: 8px; }
.ai-think-title  { font-size: 10px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.ai-step         { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-secondary); margin-bottom: 4px; }
.ai-dot          { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); flex-shrink: 0; }
.ai-dot.done     { background: #43A047; }
.ai-dot.spin     { background: var(--red); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.ai-result {
  background: var(--red-light); border: 1px solid var(--red-mid);
  border-radius: 8px; padding: 8px 10px; font-size: 12px; margin-top: 8px;
}
.ai-result strong { color: var(--red); }
.ai-fb-row   { display: flex; gap: 5px; margin-top: 6px; }
.ai-fb-btn {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); transition: all 0.15s;
}
.ai-fb-btn:hover { background: var(--bg); color: var(--text-primary); }
.ai-fb-btn svg   { width: 12px; height: 12px; }
.ai-action {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 5px 10px; font-size: 11px; font-family: var(--font); cursor: pointer;
  color: var(--text-secondary); margin-top: 6px; display: inline-flex;
  align-items: center; gap: 5px; transition: all 0.15s;
}
.ai-action:hover { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }
.ai-action svg   { width: 11px; height: 11px; }
.ai-quick-row    { padding: 8px 12px; border-top: 1px solid var(--border); display: flex; gap: 5px; flex-wrap: wrap; }
.ai-quick {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 4px 11px; font-size: 11px; cursor: pointer; color: var(--text-secondary); transition: all 0.15s;
}
.ai-quick:hover  { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }
.ai-input-wrap   { padding: 10px 12px; border-top: 1px solid var(--border); }
.ai-input-box    { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.ai-textarea {
  width: 100%; border: none; padding: 8px 12px; font-family: var(--font); font-size: 12px;
  color: var(--text-primary); resize: none; height: 56px; background: var(--bg);
  outline: none; line-height: 1.5;
}
.ai-input-ft {
  background: var(--bg); border-top: 1px solid var(--border);
  display: flex; align-items: center; padding: 5px 8px; gap: 4px;
}
.ai-icon { color: var(--text-muted); cursor: pointer; padding: 4px; }
.ai-icon svg { width: 13px; height: 13px; }
.ai-send {
  margin-left: auto; background: var(--red); color: #fff; border: none;
  border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 500;
  cursor: pointer; font-family: var(--font); transition: background 0.15s;
}
.ai-send:hover { background: #c02215; }
.ai-disc { font-size: 10px; color: var(--text-muted); text-align: center; padding: 5px 12px 8px; }

/* ── ALERTS / TOAST ── */
.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--text-primary); color: #fff; padding: 10px 20px;
  border-radius: 8px; font-size: 12px; z-index: 9999;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.toast.show { opacity: 1; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar       { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
