/* ---------------------------------------------------------------------------
 * OSiris map floating panel — ONE shared style for every on-map panel
 * (aircraft details, data probe, …). Glass dark-first, html.light variant.
 * Shared platform stylesheet: linked directly by pages; the air-traffic
 * vendor bundle no longer ships these classes.
 * ------------------------------------------------------------------------- */
.osiris-map-panel {
  position: fixed;
  width: 19.5rem;
  max-width: calc(100vw - 32px);
  z-index: 45;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(13, 20, 28, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  backdrop-filter: blur(20px) saturate(1.15);
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
html.light .osiris-map-panel {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
}

.osiris-map-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.65rem 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: grab;
  user-select: none;
}
.osiris-map-panel-header:active {
  cursor: grabbing;
}
html.light .osiris-map-panel-header {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.osiris-map-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1392ec;
}
.osiris-map-panel-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1392ec;
  box-shadow: 0 0 8px rgba(19, 146, 236, 0.9);
}

.osiris-map-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.osiris-map-panel-close:hover {
  border-color: rgba(19, 146, 236, 0.6);
  color: #fff;
  background: rgba(19, 146, 236, 0.15);
}
html.light .osiris-map-panel-close {
  border-color: rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.7);
}
html.light .osiris-map-panel-close:hover {
  color: #0f172a;
}

.osiris-map-panel-body {
  padding: 0.85rem 0.9rem 0.9rem;
}

.osiris-map-panel-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.osiris-map-panel-subtitle {
  margin: 0.15rem 0 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
html.light .osiris-map-panel-subtitle {
  color: rgba(15, 23, 42, 0.55);
}

.osiris-map-panel-grid {
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.42rem;
}

.osiris-map-panel-row {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.28rem 0 0.28rem 0.55rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}
html.light .osiris-map-panel-row {
  border-left-color: rgba(15, 23, 42, 0.12);
}

.osiris-map-panel-row dt {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
html.light .osiris-map-panel-row dt {
  color: rgba(15, 23, 42, 0.5);
}

.osiris-map-panel-row dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.osiris-map-panel-row dd .unit,
.osiris-map-panel-row dd small {
  font-size: 0.66rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
html.light .osiris-map-panel-row dd .unit,
html.light .osiris-map-panel-row dd small {
  color: rgba(15, 23, 42, 0.5);
}

/* Highlighted metric (e.g. altitude, temperature) */
.osiris-map-panel-row--hero {
  border-left-color: #1392ec;
  background: linear-gradient(90deg, rgba(19, 146, 236, 0.14), transparent 80%);
  border-radius: 0 6px 6px 0;
}
.osiris-map-panel-row--hero dd {
  color: #4db6f7;
  font-size: 0.86rem;
}
html.light .osiris-map-panel-row--hero dd {
  color: #0b6fb8;
}

.osiris-map-panel-note {
  margin-top: 0.75rem;
  padding: 0.35rem 0.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
html.light .osiris-map-panel-note {
  border-color: rgba(15, 23, 42, 0.2);
  color: rgba(15, 23, 42, 0.5);
}

.osiris-map-panel-loading {
  display: inline-block;
  width: 0.85em;
  animation: osiris-panel-ellipsis 1.2s steps(4) infinite;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}
@keyframes osiris-panel-ellipsis {
  0% { width: 0; }
  100% { width: 0.85em; }
}

/* Beta badge on the map-data tile (compiled Tailwind lacks violet dark variants) */
.map-data-coverage-tag--beta {
  background: rgba(139, 92, 246, 0.16);
  color: #7c3aed;
}
html.dark .map-data-coverage-tag--beta {
  background: rgba(139, 92, 246, 0.28);
  color: #c4b5fd;
}

/* --------------------------------------------------------------------------
 * Probe pin (unified data probe) — pulsing cerulean point on the map
 * ------------------------------------------------------------------------ */
.osiris-probe-pin {
  position: relative;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.osiris-probe-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(19, 146, 236, 0.45);
  animation: osiris-probe-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.osiris-probe-pin::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1392ec;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.85), 0 0 10px rgba(19, 146, 236, 0.8);
}
@keyframes osiris-probe-ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

/* --------------------------------------------------------------------------
 * Satellite imagery timeline — scrub/play the last 3 days (GIBS + Sentinel-2).
 * Bottom-center glass pill; solid enough to read without backdrop-blur (Tesla).
 * ------------------------------------------------------------------------ */
.sat-timeline-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 36;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 20, 28, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
html.light .sat-timeline-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
  color: #0f172a;
}
.sat-timeline-bar.hidden { display: none; }

.sat-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: #1392ec;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.sat-play-btn:hover { background: #0f7fce; }
.sat-play-btn .material-symbols-outlined { font-size: 1.35rem; }

.sat-timeline-days { display: flex; gap: 4px; }
.sat-day {
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.sat-day:hover:not(.is-active) { background: rgba(148, 163, 184, 0.18); }
.sat-day.is-active { background: #1392ec; color: #fff; }

@media (max-width: 767px) {
  .sat-timeline-bar { bottom: 84px; }
}

/* --------------------------------------------------------------------------
 * Isochrone tool (Real estate) — origin pin + panel controls.
 * Tokens: --iso-surface (control bg), --iso-border, --iso-muted (labels).
 * Dark-first; a stronger, higher-contrast light-mode set follows.
 * ------------------------------------------------------------------------ */
.osiris-isochrone-panel {
  --iso-surface: rgba(255, 255, 255, 0.05);
  --iso-surface-hover: rgba(255, 255, 255, 0.09);
  --iso-border: rgba(255, 255, 255, 0.14);
  --iso-muted: rgba(255, 255, 255, 0.5);
  --iso-accent: #1392ec;
  --iso-accent-ink: #fff;
  width: 20rem;
}
html.light .osiris-isochrone-panel {
  --iso-surface: #eef2f8;
  --iso-surface-hover: #e3e9f2;
  --iso-border: rgba(15, 23, 42, 0.12);
  --iso-muted: rgba(15, 23, 42, 0.55);
}

.isochrone-origin-pin {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--iso-accent, #1392ec);
  border: 2.5px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.iso-body { display: flex; flex-direction: column; gap: 0.9rem; }

/* Numbered field groups */
.iso-field { display: flex; flex-direction: column; gap: 0.5rem; }
.iso-field-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--iso-muted);
}

/* Buttons */
.iso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--iso-border);
  border-radius: 10px;
  background: var(--iso-surface);
  color: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}
.iso-btn .material-symbols-outlined { font-size: 1.2rem; }
.iso-btn:hover { background: var(--iso-surface-hover); border-color: var(--iso-accent); }
.iso-btn:active { transform: translateY(1px); }
.iso-btn--primary {
  background: var(--iso-accent);
  border-color: var(--iso-accent);
  color: var(--iso-accent-ink);
  box-shadow: 0 4px 14px rgba(19, 146, 236, 0.35);
}
.iso-btn--primary:hover { background: #0f7fce; border-color: #0f7fce; }
.iso-btn--ghost { min-height: 42px; font-size: 0.8rem; color: var(--iso-muted); }
.iso-btn--ghost:hover { color: inherit; }

/* Time steppers (hours + minutes) */
.iso-time { display: flex; gap: 0.55rem; }
.iso-stepper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--iso-border);
  border-radius: 10px;
  background: var(--iso-surface);
  overflow: hidden;
}
.iso-step {
  width: 44px;
  height: 46px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.iso-step:hover:not(:disabled) { background: var(--iso-surface-hover); color: var(--iso-accent); }
.iso-step:disabled { opacity: 0.3; cursor: default; }
.iso-step-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
.iso-step-value b { font-size: 1.1rem; font-weight: 700; }
.iso-step-value em { font-style: normal; font-size: 0.7rem; color: var(--iso-muted); }

/* Mode segmented control */
.iso-seg {
  display: flex;
  gap: 0.3rem;
  padding: 0.25rem;
  border: 1px solid var(--iso-border);
  border-radius: 10px;
  background: var(--iso-surface);
}
.iso-seg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.45rem 0.5rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.iso-seg-btn .material-symbols-outlined { font-size: 1.15rem; }
.iso-seg-btn:hover:not(.is-active) { background: var(--iso-surface-hover); }
.iso-seg-btn.is-active {
  background: var(--iso-accent);
  color: var(--iso-accent-ink);
  box-shadow: 0 2px 8px rgba(19, 146, 236, 0.35);
}

/* Live-traffic toggle row (nested under Mode) */
.iso-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 0.15rem;
  cursor: pointer;
}
.iso-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.iso-toggle-label .material-symbols-outlined { font-size: 1.15rem; color: var(--iso-muted); }
.iso-toggle-row.iso-disabled { opacity: 0.4; pointer-events: none; }

/* Status bar */
.iso-statusbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: var(--iso-surface);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--iso-muted);
  min-height: 40px;
}
.iso-status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #64748b;
}
.osiris-isochrone-panel:not(.iso-busy) .iso-status-dot { background: var(--iso-accent); }
.osiris-isochrone-panel.iso-busy .iso-status-dot { background: #f59e0b; animation: iso-pulse 1s ease-in-out infinite; }
.osiris-isochrone-panel.iso-busy .osiris-map-panel-body { cursor: progress; }
@keyframes iso-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* --------------------------------------------------------------------------
 * Discover my world panel — desktop floating right column
 * (mobile bottom-sheet overrides live in mobile-bottom-sheet.css)
 * ------------------------------------------------------------------------ */
.bottom-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.bottom-panel.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (min-width: 768px) {
  #bottom-panel {
    position: fixed;
    top: calc(var(--platform-topbar-height, 3rem) + 0.75rem);
    right: 1rem;
    bottom: 0.75rem;
    left: auto;
    width: min(400px, calc(100vw - 6rem));
    max-height: none;
    pointer-events: auto;
    z-index: 70; /* above toasts (40 when panel open) */
  }

  /* Shift the map control buttons left while the panel is open */
  #map-controls-right {
    transition: transform 0.25s ease;
  }
  body.discover-panel-open #map-controls-right {
    transform: translate(calc(-1 * min(400px, calc(100vw - 6rem)) - 0.75rem), -50%);
  }
}

/* --------------------------------------------------------------------------
 * Probe temperature chart (D3 multi-model comparison in the data probe)
 * ------------------------------------------------------------------------ */
.osiris-probe-chart-section {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html.light .osiris-probe-chart-section {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.osiris-probe-chart-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
html.light .osiris-probe-chart-head {
  color: rgba(15, 23, 42, 0.5);
}

.osiris-probe-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.osiris-probe-chart-legend-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.16rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s;
}
.osiris-probe-chart-legend-btn.is-off {
  opacity: 0.38;
}
html.light .osiris-probe-chart-legend-btn {
  border-color: rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.7);
}

.osiris-probe-chart-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.osiris-probe-chart {
  position: relative;
  width: 100%;
  margin-top: 0.35rem;
  min-height: 132px;
  /* Transparent background — the chart inherits the panel glass. */
}
.osiris-probe-chart svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.osiris-probe-chart-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}
html.light .osiris-probe-chart-note {
  color: rgba(15, 23, 42, 0.5);
}

.osiris-probe-chart-axis text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.55rem;
  fill: rgba(255, 255, 255, 0.45);
}
html.light .osiris-probe-chart-axis text {
  fill: rgba(15, 23, 42, 0.5);
}

.osiris-probe-chart-cursor {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1;
  stroke-dasharray: 2 3;
  pointer-events: none;
}
html.light .osiris-probe-chart-cursor {
  stroke: rgba(15, 23, 42, 0.35);
}

.osiris-probe-chart-dot {
  stroke: rgba(13, 20, 28, 0.9);
  stroke-width: 1.5;
  pointer-events: none;
}
html.light .osiris-probe-chart-dot {
  stroke: rgba(255, 255, 255, 0.95);
}

.osiris-probe-chart-tooltip {
  position: absolute;
  z-index: 5;
  min-width: 7.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(13, 20, 28, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  font-family: 'IBM Plex Mono', monospace;
}
html.light .osiris-probe-chart-tooltip {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.osiris-probe-chart-tooltip-time {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.3rem;
}
html.light .osiris-probe-chart-tooltip-time {
  color: rgba(15, 23, 42, 0.5);
}

.osiris-probe-chart-tooltip-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
html.light .osiris-probe-chart-tooltip-row {
  color: rgba(15, 23, 42, 0.7);
}
.osiris-probe-chart-tooltip-row b {
  margin-left: auto;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
html.light .osiris-probe-chart-tooltip-row b {
  color: #0f172a;
}

/* --------------------------------------------------------------------------
 * Mobile: every .osiris-map-panel becomes a bottom sheet (inline drag
 * positions are overridden; panels keep their close buttons).
 * ------------------------------------------------------------------------ */
@media (max-width: 767px) {
  .osiris-map-panel {
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    z-index: 45;
  }
  .osiris-map-panel-header {
    cursor: default;
  }
  /* Bigger touch target on mobile (shared close button, incl. user/rec/widget panels) */
  .osiris-map-panel-close {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ---------------------------------------------------------------------------
 * Airport floating cards (airports Map Data layer). Map-owned so both the
 * OSiris and Public Map App get them via the byte-identical CSS sync — do NOT
 * move these back inline into index.html (the public app has its own).
 * A billboard card that faces the viewer and floats above the terrain,
 * tethered to its ground point by a fine leader line ending in a base dot.
 * ------------------------------------------------------------------------- */
.airport-card-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.airport-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px 4px 7px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.9);
  color: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 5px 14px rgba(2, 6, 23, 0.45);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  white-space: nowrap;
}
.airport-card-icon {
  font-size: 15px;
  line-height: 1;
  color: #7dd3fc;
}
.airport-card-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}
.airport-card-leader {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(125, 211, 252, 0.9), rgba(125, 211, 252, 0.12));
}
.airport-card-anchor {
  width: 5px;
  height: 5px;
  margin-top: -1px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.22), 0 0 6px rgba(125, 211, 252, 0.55);
}
html.light .airport-card {
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.18);
}
html.light .airport-card-icon { color: #0284c7; }
html.light .airport-card-leader {
  background: linear-gradient(to bottom, rgba(2, 132, 199, 0.85), rgba(2, 132, 199, 0.1));
}
html.light .airport-card-anchor {
  background: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18), 0 0 6px rgba(2, 132, 199, 0.5);
}
