:root {
  --teal: #0F766E;
  --teal-dark: #0B5A54;
  --ink: #1a2330;
  --muted: #5b6675;
  --bg: #ffffff;
  --card: #f2f7f6;
  --border: #d9e2e0;
  --link: #0F766E;
}
@media (prefers-color-scheme: dark) {
  :root {
    --teal: #2DD4BF;
    --teal-dark: #5EEAD4;
    --ink: #e6edf3;
    --muted: #9aa7b4;
    --bg: #10161d;
    --card: #18222b;
    --border: #2b3844;
    --link: #2DD4BF;
  }
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 18px 48px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}
header.site {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
header.site .brand {
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  font-size: 17px;
}
header.site nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 14px;
}
header.site nav a:hover { color: var(--link); text-decoration: underline; }
h1 {
  color: var(--teal);
  border-bottom: 3px solid var(--teal);
  padding-bottom: 8px;
  font-size: 1.7em;
  line-height: 1.3;
}
h2 { color: var(--teal); margin-top: 34px; font-size: 1.25em; }
h3 { margin-top: 26px; font-size: 1.05em; }
a { color: var(--link); }
.updated { color: var(--muted); font-size: 14px; }
.callout {
  background: var(--card);
  border-left: 4px solid var(--teal);
  padding: 12px 16px;
  margin: 18px 0;
  border-radius: 6px;
}
ul, ol { padding-left: 22px; }
li { margin-bottom: 6px; }
.tablewrap { overflow-x: auto; margin: 16px 0; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { border: 1px solid var(--border); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: var(--card); color: var(--teal-dark); }
code {
  background: var(--card);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.9em;
}
footer.site {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--muted);
  font-size: 13.5px;
}
footer.site a { color: var(--muted); }
