.vp-kenya-map-host {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.vp-kenya-map-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-kenya-map-svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.35));
}

.vp-kenya-map-svg .vp-map-outline {
  pointer-events: none;
}

.vp-kenya-map-svg .vp-county-region {
  cursor: pointer;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

.vp-kenya-map-svg .vp-county-region:hover,
.vp-kenya-map-svg .vp-county-region.vp-county-active {
  fill: rgba(16, 185, 129, 0.32) !important;
  stroke: rgba(52, 211, 153, 0.65);
}

.vp-kenya-map-svg .vp-county-num {
  fill: rgba(236, 253, 245, 0.82);
  font-size: 1.85px;
  font-weight: 700;
  font-family: Inter, system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  paint-order: stroke fill;
  stroke: rgba(0, 0, 0, 0.75);
  stroke-width: 0.28px;
  pointer-events: none;
}

.vp-kenya-map-svg .vp-county-num-active {
  fill: #fef3c7;
  font-size: 2.1px;
}

.vp-kenya-map-svg .vp-city-dot {
  filter: url(#vpCityGlow);
}

.vp-kenya-map-svg .vp-city-hot .vp-city-dot {
  filter: url(#vpCityGlow);
}

.vp-kenya-map-svg .vp-city-pulse {
  animation: vp-city-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes vp-city-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.vp-kenya-map-svg .vp-city-label {
  fill: rgba(255, 255, 255, 0.88);
  font-size: 2.1px;
  font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
  paint-order: stroke fill;
  stroke: rgba(0, 0, 0, 0.8);
  stroke-width: 0.25px;
  pointer-events: none;
}

.vp-map-tooltip {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #a7f3d0;
  font-size: 0.7rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.vp-kenya-map-wrap:hover .vp-map-tooltip {
  opacity: 1;
}
