/* Shared shell for public Orihon CDN demos */
:root {
  --ink: #172026;
  --muted: #5b6b75;
  --line: #d7e0e6;
  --bg: #eef3f6;
  --panel: #ffffff;
  --accent: #0f766e;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--bg);
}
body {
  display: grid;
  grid-template-rows: auto 1fr;
}
header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: end;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, white 82%, transparent);
  backdrop-filter: blur(8px);
}
.brand {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
header h1 {
  margin: 0.15rem 0 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
header p {
  margin: 0.25rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.toolbar a, .toolbar button, .toolbar select {
  font: inherit;
}
.toolbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.toolbar button, .toolbar select {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}
.toolbar button:hover { border-color: #9bb6b2; }
#map {
  width: 100%;
  min-height: 0;
  height: 100%;
}
.badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #d9f3ef;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 600;
}
