.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.chart-legend-item {
    display: flex;
    align-items: center;
    margin: 5px 10px;
    cursor: pointer;
}
.chart-legend-color {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 3px;
}
.chart-legend-text {
    font-size: 0.9rem;
    color: var(--text-light);
}
.chartjs-tooltip {
    background: rgba(51, 30, 0, 0.9) !important;
    border: 1px solid var(--amber-border) !important;
    border-radius: 8px !important;
    padding: 10px !important;
    color: var(--text-light) !important;
    /* backdrop-filter: blur(5px) !important; */
    pointer-events: none;
    position: absolute;
    z-index: 100;
    transition: all .1s ease;
    opacity: 0;
}
.chartjs-tooltip-key {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}