/* ===================================================
   HERRAMIENTA DE COORDENADAS (MODO DEV)
   Presiona D para activar, Esc para cerrar
   Click 1 = Anchor, Click 2 = Tooltip -> copia JSON
   =================================================== */

#coordHelper {
  position: absolute;
  inset: 0;
  background: rgba(68, 0, 238, 0.15);
  backdrop-filter: blur(1px);
  cursor: crosshair;
  z-index: 1000;
}

#coordDisplay {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violeta-900, #0D0331);
  color: #F5F5F5;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.95rem;
  border: 1px solid rgba(105,216,208,.5);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  pointer-events: none;
  z-index: 1001;
  text-align: center;
  white-space: pre;
}

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

.coord-marker.anchor-marker {
  background: var(--violeta-acento, #69D8D0);
  border: 2px solid white;
  box-shadow: 0 0 12px rgba(105,216,208,.8);
}
