:root {
  --bg: #17191f;
  --bg-elevated: #1e2129;
  --card: #1b1e25;
  --card-hover: #262a33;
  --border: #30343d;
  --text: #f2f1ec;
  --muted: #9ca0aa;
  --accent: #f2f1ec;
  --accent-dark: #d6d5cf;
  --accent-glow: rgba(242, 241, 236, 0.28);
  --row-alt: #15171d;
  /* Text color to sit on top of an accent-filled button. */
  --on-accent: #17191f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
}
