#mk-map-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
}

#mk-map-image {
    width: 100%;
    display: block;
    height: auto;
}

/* Ги кријаме сите општини-патеки во SVG */
#mk-map-image path {
    fill: transparent !important;
    stroke: none !important;
}

#mk-map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mk-city {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.mk-city-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c0392b;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.mk-city-label {
    margin-top: 3px;
    font-size: 9px;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    white-space: nowrap;
    text-shadow:
        1px  1px 0 #e0e0e0,
       -1px  1px 0 #e0e0e0,
        1px -1px 0 #e0e0e0,
       -1px -1px 0 #e0e0e0;
    line-height: 1;
    pointer-events: none;
    font-weight: 600;
}

.mk-city:hover .mk-city-dot {
    transform: scale(1.5);
    background: #1a1a1a;
}

.mk-city:hover .mk-city-label {
    color: #c0392b;
}