/* Mapa województw - style tylko dla mapy SVG */

#mapa-wojewodztw {
    max-width: 800px;
    margin: 30px auto;
    display: block;
}

#mapa-wojewodztw svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Style dla regionów SVG */
#mapa-wojewodztw svg path[id^="PL"] {
    fill: #2AC59B;
    stroke: #ffffff;
    stroke-width: 2;
    transition: fill 0.3s ease;
    cursor: pointer;
}

#mapa-wojewodztw svg path[id^="PL"]:hover {
    fill: #3dd4ac;
}

#mapa-wojewodztw svg path[id^="PL"].active {
    fill: #1e8a6f;
}

/* Tooltip dla nazwy województwa */
.mapa-wojewodztw-tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    z-index: 10000;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
