:root {
  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-surface-soft: #f0f4f8;

  --color-text: #121820;
  --color-text-muted: #5f6b7a;
  --color-border: #d8e0e8;

  --color-brand-dark: #121820;
  --color-brand-cyan: #00b0ff;
  --color-brand-green: #00e676;

  --panel-height: 30vh;
  --panel-collapsed-height: 34px;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#map {
  flex: 1 1 auto;
  width: 100vw;
  height: auto;
  min-height: 0;
}

#logo {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  pointer-events: none;
}

#logo img {
  height: 64px;
}

#crosshair {
  position: fixed;
  top: calc((100vh - var(--forecast-panel-height, 30vh)) / 2);
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

body.panel-collapsed #crosshair {
  top: calc((100vh - 34px) / 2);
}

#crosshair::before,
#crosshair::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
}

#crosshair::before {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
}

#crosshair::after {
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
}
