html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0a0014;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overscroll-behavior: none;
}

#map {
  position: fixed;
  inset: 0;
  background: #0a0014;
}

.leaflet-container {
  background: #0a0014;
}

#locate {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #ff2ea6;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#locate:active {
  transform: scale(0.95);
}

#status {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

#status.show {
  opacity: 1;
}

.user-dot {
  width: 18px;
  height: 18px;
  background: #2e7dff;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(46, 125, 255, 0.25);
}
