#left-panel {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.2);
    width: 33vw;
    min-width: 24rem;
    height: 100vh;
    z-index: 100;
    left: -100%;
    transition: left 0.3s;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
    padding-bottom: 1.2rem;
}

#left-panel.active-panel {
    left: 0 !important;
}

/* #left-panel:hover {
    background-color: rgba(255, 255, 255, 1);
} */

#left-panel h1 {
    font-size: 1.6rem;
    padding: 1.2rem;
}

#visualization-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
}
#visualization-detail-container{
    width: 100%;
    padding: 0 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}
.vi-detail-title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.2rem;
    padding: 0.2rem 0;
    border-bottom: 1px solid #aaa;
}
.vi-detail-title h4{
    width: 100%;
    margin-right: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: -0.3rem;
    line-height: 1.2;
}
.vi-detail-title button{
    font-size: 1.2rem;
    width: 4rem;
    cursor: pointer;
}
.vi-median-income h5{
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}
.vi-median-income p{
    margin-top: -0.4rem;
    padding: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

#detail-visualization{
    margin-top: 1.2rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
}

.tank-circle{
    width: calc((100% - 3.6rem)/60);
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: gray;
}
.tank-circle.blue{
    background-color: #6495ED;
}
.tank-circle.red{
    background-color: #DC143C;
}