.clickable-svg-map svg {
    width: 100%;
    height: auto;
}

.clickable-svg-map path {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.clickable-svg-map circle {
    transition: fill 0.3s ease;
    fill: #41b991; /* Standardfüllfarbe der Text-Bubbles */
}

/* Active State: wie beim Hover */
.clickable-svg-map path.active {
    fill: #41B991 !important;
}

.clickable-svg-map circle.active {
    fill: #000000 !important;
}
