#map-container svg {
    top: 0;
    left: 0;
    height: 100%;
    max-width: 100%;
    stroke: white;
    stroke-width: 2.0;
}

#map-container svg path {
    fill: #003399;
}

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

#map-container svg path.zoomed {
    fill: rgb(78, 101, 112);
}

#map-container svg path:hover {
    fill: #ffcc00;
    cursor: pointer;
}

#map-container {
    display: block;
    height: 100%;
    width: 90%;
    margin: auto;
    text-align: center;
}

#map-container svg .city {
    fill: #ffcc00;
    stroke: #003399;
    stroke-width: 0.4;
    cursor: pointer;
}

#zoom-out {
    position: absolute;
    z-index: 10000000;
}

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