* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  background: #fafaf8;
}

nav {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid #2d5016;
  margin-bottom: 32px;
}

nav a {
  color: #2d5016;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover { text-decoration: underline; }

main { min-height: 60vh; }

h1 { color: #2d5016; margin-bottom: 16px; }
h2 { color: #3a6b1e; margin: 24px 0 12px; }
h3 { color: #4a8525; margin: 20px 0 8px; }

p { margin-bottom: 12px; }

a { color: #2d5016; }

ul, ol { margin: 12px 0 12px 24px; }

code {
  background: #e8f0e0;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

pre {
  background: #2d2d2d;
  color: #f0f0f0;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 16px 0;
}

pre code { background: none; color: inherit; padding: 0; }

footer {
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid #ddd;
  color: #888;
  font-size: 0.85em;
}

#sitemap-search {
  border: 2px solid #2d5016;
  border-radius: 6px;
  outline: none;
}

#sitemap-search:focus { border-color: #4a8525; box-shadow: 0 0 0 3px rgba(74,133,37,0.2); }

#sitemap-results a { font-weight: 600; font-size: 1.1em; }
#sitemap-results small { color: #666; }
#sitemap-results li { padding: 8px 0; border-bottom: 1px solid #eee; }
