/* Portal-wide base styles. Linked by every page in pages/ and by
   index.html. Holds only the rules that are genuinely shared:
   body typography, container width, breadcrumb, and footer.
   Page-specific styles (map, forms, card grid) stay inline. */

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

body {
  font-family: "Courier New", Courier, monospace;
  background: #111;
  color: #ddd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.container {
  max-width: 860px;
  width: 100%;
}

.breadcrumb {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { color: #8ab4f8; }

footer {
  margin-top: 3rem;
  text-align: center;
  color: #555;
  font-size: 0.75rem;
}

footer a { color: #666; }
