:root {
  --text: #1b1b1b;
  --muted: #5a5a5a;
  --rule: #e0e0e0;
  --bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #e8e8e8;
    --muted: #a0a0a0;
    --rule: #333333;
    --bg: #141414;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  max-width: 44rem;
  background: var(--bg);
  color: var(--text);
  font: 1rem/1.65 system-ui, -apple-system, "Segoe UI", sans-serif;
}

header {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

header a { font-weight: 600; text-decoration: none; }

nav { margin-top: 0.5rem; }

nav a {
  color: var(--muted);
  margin-right: 1rem;
  font-size: 0.9rem;
}

/* Die Sprachweiche rechts, abgesetzt von den Rechtstexten daneben. */
nav a.sprache {
  float: right;
  margin-right: 0;
}

h1 { font-size: 1.6rem; line-height: 1.25; }
h2 { font-size: 1.15rem; margin-top: 2.25rem; }

a { color: inherit; }

dl { margin: 0; }
dt { font-weight: 600; margin-top: 1rem; }
dd { margin: 0.2rem 0 0; }

table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
th, td { text-align: left; padding: 0.5rem 0.75rem 0.5rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 600; }

footer {
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hinweis {
  border-left: 3px solid var(--rule);
  padding-left: 1rem;
  color: var(--muted);
}
