/* ─── RESET & BASE ────────────────────────────────────────────────────────── */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
}

/* ─── EMPTY STATE ─────────────────────────────────────────────────────────── */

.empty {
  text-align: center;
  padding: 32px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ─── SCROLLBAR ───────────────────────────────────────────────────────────── */

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
