#legend-container{
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 900;
    --dataset-col-reg: var(--ocean-grey);
}
#legend-panel{
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 10px;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 20%); 
}

#legend-title{
    background-color: var(--bluegrey4);
    color: var(--off-white);
    font-size: 12px;
    text-align: center;
}

#legend-title,
#legend-table{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
}

#legend-table{
    background-color: var(--off-white);
    color: var(--bluegrey5);
}

#legend-table tbody tr td{
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
}

.legend-circle{
    display: inline-block;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    border: 1px solid var(--off-white);
    background-color: var(--dataset-col);
}

.legend-poly{
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 1px solid var(--off-white);
    background-color: var(--dataset-col);
}