/* Minimal dark stylesheet for setuid.run, in the spirit of water.css dark. */

:root {
  --background: #202b38;
  --text: #dbdbdb;
  --text-muted: #a9b1ba;
  --link: #41adff;
  --border: #526980;
  --code-background: #161f27;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 45rem;
  padding: 1.5rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--background);
  color: var(--text);
}

h1, h2, h3 {
  line-height: 1.2;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

header h1 {
  margin-bottom: 0.5rem;
}

nav {
  color: var(--text-muted);
}

code {
  background: var(--code-background);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.95em;
}
