/* ===================================================
   ESTILOS PARA HERRAMIENTA DE COORDENADAS (MODO DEV)
   =================================================== */

#coordHelper {
  position: absolute;
  inset: 0;
  background: rgba(90, 20, 180, 0.25);
  backdrop-filter: blur(2px);
  cursor: crosshair;
  z-index: 1000;
}

#coordDisplay {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #140232;
  color: #F5F5F5;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1rem;
  border: 1px solid #B989F9;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  pointer-events: none;
  z-index: 1001;
  text-align: center;
  white-space: pre;
}

.coord-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1002;
}

.coord-marker.anchor-marker {
  background: #B989F9;
  border: 2px solid white;
  box-shadow: 0 0 8px rgba(185,137,249,.8);
}
