* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--highcharts-text-color);
    font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#container {
    width: 100%;
    height: 100%;
    /* Safeguard: if a parent collapses, the map still has room to render
       instead of drawing into a 0px-tall box (a common "blank map" cause). */
    min-height: 400px;
}

.loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
}

#map-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-family: inherit;
    font-size: 25px;
    font-weight: bold;
    text-align: left;
}

#map-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #F5A623;
    flex-shrink: 0;
}
