/* ============================================
   EUMUDA Interactive Europe Map
   Vanilla JS/SVG - replaces CSSMap plugin
   ============================================ */
.europe-map-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 50%;
}

.europe-map-container svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
}

.europe-map-container .country {
    stroke: #fff;
    stroke-width: 0.6;
    cursor: default;
    transition: fill 0.2s ease, filter 0.2s ease;
}

.europe-map-container .country.clickable {
    cursor: pointer;
}

.europe-map-container .country.clickable:hover {
    filter: brightness(1.2);
    stroke-width: 1.2;
}

.europe-map-container .zone-north   { fill: #25af2a; }
.europe-map-container .zone-central { fill: #faa729; }
.europe-map-container .zone-south   { fill: #1745a5; }
.europe-map-container .zone-none    { fill: #d5d8dc; }

.europe-map-container .globe-bg      { fill: url(#globe-gradient); }
.europe-map-container .globe-outline  { fill: none; stroke: #ccc; stroke-width: 0.5; }

.europe-map-tooltip {
    position: absolute;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 100;
    transform: translate(-50%, -100%);
    margin-top: -10px;
}

.europe-map-tooltip.visible {
    opacity: 1;
}

.europe-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    font-size: 14px;
}

.europe-map-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.europe-map-legend .legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #ccc;
    display: inline-block;
}