
#mapa-container {
    max-width: 800px;
    margin: auto;
}

#mapa-container svg {
    width: 70%;
    height: auto;
}

#wojewodztwo-dane {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.tabela-woj {
    display: none;
}
#mapa-container svg path {
    fill: #cccccc; /* domyślny kolor województw */
    transition: fill 0.2s ease;
    cursor: pointer;
}

#mapa-container svg path:hover {
    fill: #ffcc00; /* kolor po najechaniu */
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9999;
    display: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    font-family: sans-serif;
}