/* /Pages/Maps/Maps.razor.rz.scp.css */
#map[b-2m2bpfazrj] {
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background-color: #161b25;
    background-image:
        radial-gradient(ellipse 60% 50% at 50% 42%, rgba(252, 82, 0, 0.10), transparent 65%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 255, 255, 0.04), transparent 70%),
        radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 22px 22px;
    background-position: 0 0, 0 0, 0 0;
}

/* SVG map (Netherlands) — paths are created in JS, so reach through scope with ::deep */
#map[b-2m2bpfazrj]  svg.svg-map {
    display: block;
    width: 100%;
    height: 100%;
}

#map[b-2m2bpfazrj]  svg.svg-map path {
    fill: #4a5365;
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 0.6;
    vector-effect: non-scaling-stroke;
    cursor: pointer;
    opacity: 0;
    animation: svg-map-fade-in-b-2m2bpfazrj 0.4s ease-out forwards;
    animation-delay: calc(var(--i) * 2ms);
    transition: stroke 0.15s ease, stroke-width 0.15s ease, fill 0.15s ease;
}

#map[b-2m2bpfazrj]  svg.svg-map path.visited {
    fill: var(--accent);
}

#map[b-2m2bpfazrj]  svg.svg-map path.hover {
    stroke: #ffffff;
    stroke-width: 1.6;
    animation: svg-map-shine-b-2m2bpfazrj 0.22s ease-out;
}

@keyframes svg-map-fade-in-b-2m2bpfazrj {
    to { opacity: 1; }
}

/* One-shot shine when a municipality is first hovered. */
@keyframes svg-map-shine-b-2m2bpfazrj {
    0%   { filter: brightness(1)    saturate(1); }
    40%  { filter: brightness(1.7)  saturate(1.25); }
    100% { filter: brightness(1.05) saturate(1); }
}

/* Tooltip */
.map-tooltip[b-2m2bpfazrj] {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-9999px, -9999px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.map-tooltip strong[b-2m2bpfazrj] {
    color: var(--accent);
    font-weight: 600;
}
/* /Pages/Statistics/Statistics.razor.rz.scp.css */
/* Styles are in wwwroot/css/app.css under the .stats- prefix */
