* {
  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;
}

.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;
}
