#map {
    width: 100%;
    height: 500px;
}

/* Procedurally generated legend */
.info.legend {
    padding: 6px 8px;
    font: 14px/16px Arial, sans-serif;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    line-height: 20px;
    color: #555;
    display: grid;
    grid-template:
        "title title" auto
        "colors labels" auto / 30px auto;
    align-items: center;
    gap: 5px;
}

.legend-colors {
    grid-area: colors;
}

.info.legend i {
    width: 100%;
    height: 20px;
    float: left;
    margin-right: 8px;
    opacity: 1;
}

.legend-labels {
    grid-area: labels;
}