body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  color: #222;
}

.site-header {
  background: #0f172a;
  color: #fff;
  padding: 6px 16px;
}

.nav a {
  color: #fff;
  margin-right: 30px;
  text-decoration: none;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 400;
  opacity: 0.9;
  transition: background-color 120ms ease, color 120ms ease, opacity 120ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: #ffffff;
  color: #0f172a;
  opacity: 1;
}

.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #0f172a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
}

.breadcrumbs {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs li + li::before {
  content: '›';
  margin: 0 4px;
  color: #94a3b8;
}

.form-row {
  margin-bottom: 12px;
}

label {
  display: block;
  margin-bottom: 6px;
}

input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
}

button {
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.map {
  width: 100%;
  height: 540px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .map {
    height: 360px;
  }
}

.error {
  color: #b91c1c;
  margin-top: 8px;
}


/* Remove default focus outline rectangle on Leaflet SVG paths */
.leaflet-interactive:focus {
  outline: none;
}


