#mapaContainer {
  position: relative;
  width: 600px;
  height: 450px;
  margin: 20px auto;
  overflow: hidden;
  border: 2px solid #333;
  background: #000;
  cursor: grab;
}

#mapaZoom {
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.npc, .spot, .player {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.npc { background: yellow; }
.spot { background: red; }
.player { background: lime; border: 1px solid white; }

.tooltip {
  position: absolute;
  background: #000;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  display: none;
  z-index: 10;
}

.map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 10px;
}

.map-legend {
  text-align: center;
  margin-top: 10px;
}

.map-rotate-buttons {
  text-align: center;
  margin-top: 10px;
}
