/*
 * css/base.css
 * ─────────────────────────────────────────────────────────────
 * CSS reset, base body styles, typography scale,
 * and small utility classes used throughout the app.
 * ─────────────────────────────────────────────────────────────
 */

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

/* ── Body ── */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

/* ── Form elements inherit font ── */
input, textarea, select, button {
  font-family: 'Outfit', sans-serif;
}

/* ── Utility classes ── */
.flex   { display: flex; }
.gap8   { gap: 8px; }
.gap12  { gap: 12px; }
.mt8    { margin-top: 8px; }
.mt16   { margin-top: 16px; }
.mt24   { margin-top: 24px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.text-muted  { color: var(--muted); font-size: 13px; }
.text-accent { color: var(--accent); }
.mono        { font-family: 'DM Mono', monospace; }

/* ── Empty state (shown when a list has no items) ── */
.empty-state      { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state-icon { font-size: 40px; margin-bottom: 12px; opacity: 0.4; }
.empty-state-text { font-size: 15px; }
