/* VBG World Map — frontend v1.2.0 */

.vbg-wm-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 45.51%; /* 887/2006 — locked aspect ratio */
    height: 0;
    overflow: hidden;
}

.vbg-wm-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}

/* ── Style: smooth (default) ── */
.vbg-wm-svg path {
    cursor: pointer;
    transition: fill 0.15s ease;
    stroke-linejoin: round;
    stroke-linecap: round;
}

/* ── Style: sharp ── */
.vbg-wm-wrap.style-sharp .vbg-wm-svg path {
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
}

/* ── Style: dots ── */
.vbg-wm-wrap.style-dots .vbg-wm-svg path {
    fill: none !important;
    stroke-width: 0 !important;
}
.vbg-wm-wrap.style-dots .vbg-wm-dot {
    transition: fill 0.15s ease;
}

/* ── Tooltip ── */
.vbg-wm-tip {
    position: absolute;
    background: rgba(0,0,0,0.78);
    color: #fff;
    font-family: sans-serif;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap;
    display: none;
    z-index: 10;
    transform: translate(-50%, -140%);
}
