.wm-container {
    position: relative;
    overflow: visible; /* allow tooltip to extend outside */
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1000 / 648;
    height: auto;
}

.wm-container .wm-map svg {
    width: 100%;
    height: 100%;
    display: block;
    background: hsla(210, 85%, 95%, 0.4);
}

.wm-country {
    fill: hsl(0, 0%, 90%);
    stroke: #ffffff;
    stroke-width: .5;
}

.wm-country:hover {
    fill: hsl(0, 0%, 80%);
}

.wm-tooltip {
    position: absolute;
    pointer-events: none;
    box-sizing: border-box;
    padding: .5rem;
    border-radius: .25rem;
    font: 0.8rem system-ui, sans-serif;
    z-index: 3;
    white-space: normal;
    max-width: 120px;
    word-break: break-word;
}

.wm-tooltip.poi {
    background: #404040d0;
    color: #fff;
}

.wm-tooltip.country {
    background: none;
    color: #3f3a3ad0;
}

.wm-credit {
    fill: #b5b3c7;
    font-size: 0.5rem;
    font-style: italic;
    font-family: sans-serif;
    pointer-events: none;
}

.wm-poi {
    cursor: pointer;
}

.wm-poi:focus {
    outline: none;
}

.wm-poi.is-selected path {
    fill: darkblue;
}

.wm-info {
    font-size: 0.8rem;
}