.map-container {
  position: relative;
  width: 1200px;
  max-width: 95vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 2rem 0;

  overflow: visible;
}

.map-image {
  width: 100%;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.state {
  fill: rgba(0, 0, 0, 0.001);
  cursor: pointer;
  transition: fill 0.2s ease;
}

.state:hover {
  fill: rgba(0, 160, 255, 0.4);
}

.map-tooltip {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(20, 20, 25, 0.96);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.35;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.map-tooltip.visible {
  opacity: 1;
}

.map-tooltip-title {
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 2px;
}

.map-tooltip-type {
  opacity: 0.85;
  font-size: 0.9rem;
}