/* ============================================================
   EUMUDA Interactive Europe Map
   ============================================================ */
.europe-map-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.europe-map-svg-wrap {
    border-radius: 50%;
    overflow: hidden;
}

.europe-map-container svg {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
}

.europe-map-container .country {
    stroke: #fff;
    stroke-width: 1;
    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.15);
    stroke-width: 1.5;
}

.europe-map-container .zone-north   { fill: #0d6efd; }
.europe-map-container .zone-central { fill: #649721; }
.europe-map-container .zone-south   { fill: #fd7e14; }
.europe-map-container .zone-partner { fill: #4D112A; }
.europe-map-container .zone-none    { fill: #d5d8dc; }

/* Tooltip */
.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;
}

/* Legend */
.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: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid #ccc;
}