#map-container {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100vw;
}

#map-container .map svg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: white !important;
    stroke-width: 0.0;
}

#map-container .map svg.zoomed {
    stroke: white !important;
    stroke-width: 1.0;
}

#map-container .map svg path {
    fill-opacity: 1;
}

#map-container .map svg path.disabled {
    fill: darkgray !important;
    cursor: no-drop !important;
}

#map-container .map svg path.disabled-selectable {
    fill: darkgray !important;
}

#map-container .map svg path:not(.disabled):hover, #map-container svg path:not(.disabled).hover {
    fill-opacity: 0.5;
    stroke-width: 1;
    cursor: pointer;
}

#map-zoom-out {
    position: absolute;
    color: #D5001C;
    background: none;
    border: none;
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 42px !important;
}

.custom-tooltip-styling {
    z-index: 100000;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.8) !important;
    margin-left: 20px;
}

#map-container .map svg[data-zoomed="1"] .no-entries, #map-container .map svg[data-zoomed="2"] .no-entries {
    cursor: no-drop !important;
}