/* The Console's stylesheet — one file, served same-origin (`style-src
   'self'`, security.py), mobile-first because the audience is sole traders
   on phones in carparks (spec §3.1). Deliberately spare until issue 07
   gives it a real screen to dress. */

:root {
  --ink: #101828;
  --paper: #ffffff;
  --muted: #475467;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}
