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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f5;
  color: #111111;
  overflow: hidden;
}

html.theme-dark body {
  background: #02030a;
  color: #f5f5f5;
}

#map-launch-root {
  width: 100vw;
  height: 100vh;
  position: relative;
}

@supports (height: 100dvh) {
  #map-launch-root {
    height: 100dvh;
  }
}

html.arafura-pseudo-fullscreen,
body.arafura-pseudo-fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.arafura-pseudo-fullscreen #map-launch-root,
body.arafura-pseudo-fullscreen #app {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  z-index: 2147483647 !important;
}

@supports (height: 100dvh) {
  body.arafura-pseudo-fullscreen #map-launch-root,
  body.arafura-pseudo-fullscreen #app {
    height: 100dvh !important;
  }
}

.dev-indicator {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(255, 152, 0, 0.9);
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 9999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
