:root {
  --bg: #C7CBC2;
  --fg: #151F10;
  --link: #151F10;
  --code-bg: #A8ADA5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #151F10;
    --fg: #C7CBC2;
    --link: #ADD58F;
    --code-bg: #354030;
  }
}

body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  background-color: var(--bg);
  color: var(--fg);
  padding: 2rem;
  max-width: 72ch;
  margin: auto;
  line-height: 1.6;
}

h1,
h2 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0;
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: 0;
}

li {
  list-style-type: none;
  margin-left: 0;
}

code {
  background: var(--code-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

a {
  color: var(--link);
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 0;
}

footer {
  margin-top: 2rem;
  padding-top: 0;
  text-align: left;
}

.copyright {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.theme-selector {
  margin-top: 2rem;
}

.theme-toggle {
  cursor: pointer;
  user-select: none;
}

.theme-toggle:hover {
  text-decoration: underline;
}

.theme-toggle.active {
  font-weight: bold;
  text-decoration: underline;
} 