/* Shared theme for public-facing mesarch pages. */
:root {
  --bg: #0f1115; --panel: #161a22; --line: #242a35; --text: #e6e9ef;
  --muted: #8b94a3; --accent: #7aa2f7; --danger: #f7768e; --ok: #9ece6a;
  --warn: #e0af68;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 14px ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--bg); color: var(--text);
  min-height: 100vh; display: flex; flex-direction: column;
}

#page-header {
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
#page-header h1 { margin: 0; font-size: 16px; font-weight: 600; }
#page-header h1 a { color: var(--text); text-decoration: none; }
#page-header nav { display: flex; gap: 16px; }
#page-header nav a { color: var(--muted); text-decoration: none; font-size: 13px; }
#page-header nav a:hover { color: var(--text); }

main { flex: 1; padding: 48px 24px; max-width: 760px; margin: 0 auto; width: 100%; }

#page-footer {
  padding: 16px 24px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px; text-align: center;
}
#page-footer a { color: var(--muted); }
