body {
    font-family: sans-serif;
    margin: 0;
}

.modebar {
    display: none !important;
}

#nav {
    align-items: center;
    display: flex;
    height: 40px;
    padding: 16px 32px 16px 16px;
    width: 70%;
    margin: 0 auto;
}

#nav img {
    height: 100%;
    margin-right: 16px;
}

#map-container {
    display: flex;
    height: 400px;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
}

#map-container #loading {
    padding: 10px;
    display: inline-block;
}

#map-container .leaflet-control-locate {
    visibility: hidden;
}

#controls,
#infoText {
    display: flex;
    margin: 16px;
    width: 70%;
    margin: 16px auto;
}

#controls #host {
    margin-right: 8px;
    width: 160px;
}

#controls #duration,
#frequency {
    margin-right: 8px;
    width: 160px;
}


#controls #durationLabel,
#frequencyLabel {
    margin-right: 8px;
    font-weight: bold;
    text-align: center;
}

#controls #export {
    align-items: center;
    background-color: white;
    border-radius: 4px;
    border: 1px solid silver;
    display: flex;
    font-size: 16px;
    height: 100%;
    padding: 0 8px;
}

#controls #export img {
    height: 16px;
    margin: 0 4px 1px 0;
    vertical-align: middle;
}

[data-dash-is-loading='true'] {
    visibility: hidden;
}

[data-dash-is-loading='true']::before {
    content: url('spinner.gif');
    display: flex;
    justify-content: center;
    visibility: visible;
}

#graphs {
    width: 70%;
    margin: 0 auto;
}

/* Added Pulsing Animation to Markers */
@keyframes subtlePulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.008);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.pulse-marker {
    animation-name: subtlePulse;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}