/* ============================================================
   INK CMS — Admin Stylesheet
   ============================================================ */

:root {
  --bg:           #0a0a0f;
  --surface:      #111118;
  --surface2:     #1a1a24;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(99,102,241,0.4);
  --accent:       #6366f1;
  --accent2:      #06b6d4;
  --accent-glow:  rgba(99,102,241,0.15);
  --text:         #f0f0f5;
  --text-muted:   #6b6b85;
  --text-dim:     #3a3a55;
  --success:      #10b981;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --font-display: 'DM Serif Display', serif;
  --font-mono:    'Geist Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
  --sidebar-w:    260px;
  --radius:       12px;
}

html.light {
  --bg:           #f5f4f0;
  --surface:      #ffffff;
  --surface2:     #f0eeea;
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(83,85,216,0.35);
  --accent:       #5355d8;
  --accent2:      #0891b2;
  --accent-glow:  rgba(83,85,216,0.1);
  --text:         #18181b;
  --text-muted:   #6b7280;
  --text-dim:     #c4c4cc;
  --success:      #059669;
  --warning:      #d97706;
  --danger:       #dc2626;
  --glass:        rgba(0,0,0,0.03);
  --glass-border: rgba(0,0,0,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}
html.light body::before { opacity: 0.15; }

/* ===== SIDEBAR ===== */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.sidebar-logo {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 400; font-size: 18px;
  color: white;
  box-shadow: 0 0 20px rgba(99,102,241,0.4); flex-shrink: 0;
}

.logo-text { font-family: var(--font-display); font-size: 22px; }
.logo-sub  { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: -2px; }

.sidebar-nav { padding: 16px 12px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; }

.nav-section-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-dim); padding: 8px 12px 4px; font-weight: 600;
}

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  transition: all 0.15s; color: var(--text-muted);
  font-size: 14px; margin-bottom: 2px;
  border: 1px solid transparent; text-decoration: none;
}
.nav-item:hover  { background: var(--glass); color: var(--text); border-color: var(--border); }
.nav-item.active { background: var(--accent-glow); color: var(--accent); border-color: var(--border-hover); font-weight: 500; }
.nav-item svg    { flex-shrink: 0; opacity: 0.7; }
.nav-item.active svg { opacity: 1; }

.nav-badge {
  margin-left: auto; background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}

.sidebar-footer { padding: 16px; border-top: 1px solid var(--border); }
.user-card      { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px; background: var(--glass); border: 1px solid var(--border); }
.avatar         { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: white; flex-shrink: 0; }
.user-info      { flex: 1; min-width: 0; }
.user-name      { font-size: 13px; font-weight: 500; }
.user-role      { font-size: 11px; color: var(--text-muted); }

/* ===== MAIN ===== */
.main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-height: 100vh; overflow-y: auto; height: 100vh; }

/* ===== TOPBAR ===== */
.topbar {
  padding: 16px 32px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  background: rgba(10,10,15,0.8); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
html.light .topbar { background: rgba(245,244,240,0.85); }

.topbar-title { font-family: var(--font-display); font-size: 18px; flex: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  border: 1px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 0 20px rgba(99,102,241,0.3); }
.btn-primary:hover { background: #4f46e5; box-shadow: 0 0 30px rgba(99,102,241,0.5); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { background: var(--glass); color: var(--text); }
.btn-danger  { background: rgba(239,68,68,0.1); color: var(--danger); border-color: rgba(239,68,68,0.2); }
.btn-danger:hover { background: rgba(239,68,68,0.2); }
.btn-success { background: rgba(16,185,129,0.1); color: var(--success); border-color: rgba(16,185,129,0.2); }
.btn-success:hover { background: rgba(16,185,129,0.2); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-xs { padding: 4px 8px; font-size: 11px; }

/* ===== CONTENT ===== */
.content { padding: 32px; flex: 1; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card  {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: 0; transition: opacity 0.2s; }
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.stat-card:hover::before { opacity: 1; }
.stat-icon  { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 16px; }
.stat-value { font-family: var(--font-display); font-size: 28px; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-change { font-size: 11px; margin-top: 8px; display: flex; align-items: center; gap: 4px; color: var(--text-muted); }
.stat-change.up   { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* ===== CARDS & TABLES ===== */
.card        { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.card-title  { font-family: var(--font-display); font-size: 16px; flex: 1; }

.table     { width: 100%; border-collapse: collapse; }
.table th  { padding: 12px 24px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01); }
.table td  { padding: 14px 24px; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--glass); }

.story-title-cell { font-weight: 500; }
.story-excerpt    { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.actions-cell     { display: flex; gap: 6px; align-items: center; }
.read-time-badge  { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); }

/* ===== BADGES ===== */
.badge      { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-dot  { width: 5px; height: 5px; border-radius: 50%; }
.badge-published   { background: rgba(16,185,129,0.12); color: var(--success); }
.badge-published .badge-dot { background: var(--success); }
.badge-draft       { background: rgba(107,114,128,0.15); color: #9ca3af; }
.badge-draft .badge-dot     { background: #6b7280; }
.badge-scheduled   { background: rgba(245,158,11,0.12); color: var(--warning); }
.badge-scheduled .badge-dot { background: var(--warning); }
.badge-unpublished { background: rgba(239,68,68,0.1); color: var(--danger); }
.badge-unpublished .badge-dot { background: var(--danger); }

/* ===== FILTER BAR ===== */
.filter-bar  { padding: 12px 24px; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-chip { padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.15s; border: 1px solid var(--border); color: var(--text-muted); background: transparent; text-decoration: none; display: inline-block; }
.filter-chip:hover  { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 0 12px rgba(99,102,241,0.3); }

/* ===== FORM ELEMENTS ===== */
.form-group  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label  { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.form-label .required { color: var(--danger); }

.form-input, .form-select, .form-textarea {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px; color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  transition: all 0.15s; width: 100%; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select option { background: var(--surface2); }
.char-counter { text-align: right; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.title-input {
  font-family: var(--font-display); font-size: 26px;
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 8px 0; width: 100%; outline: none; color: var(--text);
}
.title-input:focus { border-color: var(--accent); box-shadow: none; }

.slug-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 13px; color: var(--text-muted);
}
.slug-base     { color: var(--text-dim); white-space: nowrap; }
.slug-editable { background: none; border: none; color: var(--accent2); font-family: monospace; font-size: 13px; outline: none; flex: 1; min-width: 0; }

/* ===== EDITOR ===== */
.editor-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }

.editor-toolbar {
  background: var(--surface2); border: 1px solid var(--border);
  border-bottom: none; border-radius: 8px 8px 0 0;
  padding: 8px 12px; display: flex; gap: 2px; flex-wrap: wrap; align-items: center;
}
.toolbar-btn { padding: 5px 9px; border-radius: 5px; cursor: pointer; color: var(--text-muted); font-size: 13px; background: transparent; border: none; transition: all 0.1s; font-family: var(--font-body); font-weight: 500; }
.toolbar-btn:hover  { background: var(--glass); color: var(--text); }
.toolbar-btn.active { background: var(--accent-glow); color: var(--accent); }
.toolbar-sep { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }

.editor-body {
  background: var(--surface2); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 8px 8px;
  min-height: 360px; padding: 20px; font-size: 15px; line-height: 1.75;
  outline: none; color: var(--text);
}
.editor-body:focus { border-color: var(--accent); }
.editor-body p  { margin-bottom: 12px; }
.editor-body h2 { font-family: var(--font-display); font-size: 22px; margin: 24px 0 12px; }
.editor-body h3 { font-family: var(--font-display); font-size: 18px; margin: 20px 0 10px; }

/* ===== PANEL ===== */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.panel-section { padding: 16px; border-bottom: 1px solid var(--border); }
.panel-section:last-child { border-bottom: none; }
.panel-section-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }

/* ===== CATEGORY CHIPS ===== */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.category-chip { padding: 8px 6px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; text-align: center; cursor: pointer; font-size: 11px; font-weight: 500; transition: all 0.15s; }
.category-chip:hover    { border-color: var(--accent); color: var(--accent); }
.category-chip.selected { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

/* ===== TOGGLE ===== */
.toggle-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.toggle     { width: 36px; height: 20px; background: var(--border); border-radius: 20px; cursor: pointer; position: relative; transition: background 0.2s; flex-shrink: 0; }
.toggle.on  { background: var(--accent); }
.toggle::after { content: ''; position: absolute; width: 14px; height: 14px; background: white; border-radius: 50%; top: 3px; left: 3px; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.toggle.on::after { transform: translateX(16px); }

/* ===== UPLOAD ZONES ===== */
.image-upload { border: 2px dashed var(--border); border-radius: 8px; padding: 24px; text-align: center; cursor: pointer; transition: all 0.2s; }
.image-upload:hover { border-color: var(--accent); background: var(--accent-glow); }
.image-upload-icon { font-size: 24px; margin-bottom: 8px; }
.image-upload-text { font-size: 12px; color: var(--text-muted); }

.audio-player { display: flex; align-items: center; gap: 8px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; }
.play-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; border: none; color: white; font-size: 10px; }
.audio-progress { flex: 1; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.audio-fill     { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 2px; }
.audio-time     { font-size: 11px; color: var(--text-muted); font-family: monospace; }

/* ===== SEO SCORE ===== */
.seo-score  { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--surface2); border-radius: 8px; margin-bottom: 12px; }
.score-ring { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.score-ring::before { content: ''; position: absolute; inset: 6px; background: var(--surface2); border-radius: 50%; }
.score-num  { position: relative; z-index: 1; font-family: var(--font-display); font-size: 13px; }
.score-info { flex: 1; }
.score-title { font-size: 13px; font-weight: 600; }
.score-sub   { font-size: 11px; color: var(--text-muted); }
.seo-checks  { display: flex; flex-direction: column; gap: 8px; }
.seo-check   { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-muted); }
.check-icon  { flex-shrink: 0; margin-top: 1px; }
.check-ok    { color: var(--success); }
.check-warn  { color: var(--warning); }
.check-err   { color: var(--danger); }

/* ===== DISRUPT OR DIE ===== */
.disrupt-banner {
  background: transparent; border: 1px solid var(--border);
  border-left: 2px solid var(--text);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; opacity: 0.7; transition: opacity 0.2s;
}
.disrupt-banner:hover { opacity: 1; }
.disrupt-text {
  font-family: var(--font-mono), monospace;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text); opacity: 0.85;
}
.disrupt-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; width: 480px; max-width: 90vw; transform: translateY(16px); transition: transform 0.2s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 20px; }
.modal-footer { display: flex; gap: 8px; margin-top: 20px; }

/* ===== THEME TOGGLE ===== */
.theme-toggle { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--glass); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.15s; font-size: 16px; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--accent); background: var(--accent-glow); }

/* ===== SEARCH BAR ===== */
.search-bar { display: flex; align-items: center; gap: 8px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; font-size: 13px; color: var(--text-muted); min-width: 220px; transition: all 0.15s; }
.search-bar input { background: none; border: none; outline: none; color: var(--text); font-family: var(--font-body); font-size: 13px; flex: 1; }
.search-bar input::placeholder { color: var(--text-dim); }
.search-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

/* ===== SHORTCODE PILL ===== */
.shortcode-pill { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px; font-family: monospace; font-size: 11px; color: var(--accent2); white-space: nowrap; }

/* ===== READ TIME ===== */
.read-time-display { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; }
.read-time-val { font-family: var(--font-display); font-weight: 400; color: var(--accent2); margin-left: auto; }

/* ===== AUTHOR CARD ===== */
.author-option { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; cursor: pointer; transition: all 0.15s; border: 1px solid transparent; }
.author-option:hover    { background: var(--glass); }
.author-option.selected { background: var(--accent-glow); border-color: var(--border-hover); }
.author-av   { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; color: white; }
.author-name { font-size: 13px; font-weight: 500; }
.author-role { font-size: 11px; color: var(--text-muted); }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 13px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); animation: slideIn 0.3s ease; max-width: 320px; }
.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== ALERT ===== */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--success); }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--danger); }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: var(--warning); }

/* ===== LOGIN PAGE ===== */
.login-page { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--bg); margin-left: 0 !important; z-index: 9999; }
.login-box  { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 400px; max-width: 90vw; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .logo-mark { width: 52px; height: 52px; font-size: 24px; margin: 0 auto 12px; }
.login-logo .logo-text { font-size: 28px; }

/* ===== SETTINGS ===== */
.settings-grid { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.settings-nav  { display: flex; flex-direction: column; gap: 2px; }
.settings-nav-item { padding: 9px 14px; border-radius: 8px; cursor: pointer; font-size: 13px; color: var(--text-muted); transition: all 0.15s; border: 1px solid transparent; text-decoration: none; display: block; }
.settings-nav-item:hover  { background: var(--glass); color: var(--text); }
.settings-nav-item.active { background: var(--accent-glow); color: var(--accent); border-color: var(--border-hover); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .editor-layout { grid-template-columns: 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }