html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

#map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

#draw-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

#popup {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 0 20px #00ffff;
  z-index: 10;
  width: 220px;
}

#popup input {
  width: 100%;
  margin-bottom: 8px;
}

.actions {
  display: flex;
  gap: 6px;
}

.hidden {
  display: none;
}

#tooltip {
  position: fixed;
  background: #000;
  color: #0ff;
  padding: 8px;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 10px #0ff;
  z-index: 20;
}

#listado {
  position: fixed;
  right: 0;
  top: 0;
  width: 260px;
  height: 100%;
  background: #000;
  color: #fff;
  padding: 10px;
  z-index: 5;
  overflow-y: auto;
}

#listado li {
  margin-bottom: 10px;
  font-size: 14px;
}
