/* browserfirewall.com — dezentes Basis-Stylesheet, keine externen Assets */
:root {
  --bg: #ffffff;
  --fg: #1a2233;
  --muted: #5b6474;
  --accent: #1f6feb;
  --border: #e2e6ee;
  --code-bg: #f4f6fa;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10141c;
    --fg: #e6e9f0;
    --muted: #9aa3b5;
    --accent: #5b93ff;
    --border: #2a3140;
    --code-bg: #1a2030;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}
main { max-width: 60rem; margin: 0 auto; padding: 1.5rem 1rem 3rem; }
a { color: var(--accent); }
h1 { font-size: 1.7rem; line-height: 1.25; margin: 1rem 0 .5rem; }
h2 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.site-header {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.5rem;
  max-width: 60rem; margin: 0 auto; padding: 1rem;
  border-bottom: 1px solid var(--border);
}
.brand { font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--fg); }
.site-header nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-header nav a { text-decoration: none; color: var(--muted); }
.site-header nav a:hover { color: var(--accent); }
.site-footer {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  max-width: 60rem; margin: 0 auto; padding: 1.5rem 1rem;
  border-top: 1px solid var(--border); color: var(--muted); font-size: .9rem;
}
.lede { font-size: 1.1rem; color: var(--muted); }
.answer { font-size: 1.05rem; font-weight: 600; }
.stand, .meta { color: var(--muted); font-size: .9rem; }
.cta {
  display: inline-block; padding: .5rem 1rem; border: 1px solid var(--accent);
  border-radius: .4rem; text-decoration: none;
}
.totals { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1rem 0; }
.totals div { min-width: 9rem; }
.totals dt { color: var(--muted); font-size: .85rem; }
.totals dd { margin: 0; font-size: 1.5rem; font-weight: 700; }
table { border-collapse: collapse; width: 100%; margin: .75rem 0 1.5rem; font-size: .95rem; }
th, td { text-align: left; padding: .4rem .6rem; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-weight: 600; white-space: nowrap; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:hover { background: var(--code-bg); }
.empty-state {
  border: 1px dashed var(--border); border-radius: .5rem;
  padding: 1rem 1.25rem; color: var(--muted); margin: 1rem 0;
}
.table-wrap { overflow-x: auto; }
@media (max-width: 40rem) {
  table { font-size: .85rem; display: block; overflow-x: auto; }
}
