/* Legacy stylesheet now forwards to site.css for consistent layout.
   Ensures chapters and sections use the same centered, clean formatting
   as the home page. */
@import url('/assets/site.css');

/* Basic header/footer styling for pages without site-header/footer classes */
header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--highlight);
}
header h1 {
  margin: 0;
}
footer {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: var(--muted);
  background: var(--highlight);
  border-top: 1px solid var(--border);
}
