/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* ── Region-ranking hotspot dot pulse animation ─────────────────────── */
@keyframes hotspot-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.2); opacity: 0;   }
  100% { transform: scale(2.2); opacity: 0;   }
}

.hotspot-dot .dot-pulse {
  animation: hotspot-pulse 1.8s ease-out infinite;
}

.hotspot-dot:disabled {
  cursor: default;
}
.hotspot-dot:disabled .dot-pulse {
  animation: none;
}
