
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
}

label {
    font-weight: 700;
    margin: 5px 0;
    display: block;
}

small {
  font-size: 0.75em;
}

#map {
    height: 100vh;
}

.controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
}

.time-slider {
    width: 100%;
    margin: 10px 0;
}

.time-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-nav select {
    flex: 1;
}

.time-nav button {
    flex: 0 0 auto;
    padding: 2px 8px;
    cursor: pointer;
    line-height: 1;
}

.time-nav button:disabled {
    opacity: 0.4;
    cursor: default;
}

.legend {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 2px 0;
    font-size: 10px;
}

.legend-color {
    width: 20px;
    height: 12px;
    margin-right: 5px;
    border: 1px solid #ccc;
}

