/* --- MOBILE STYLES (Default) --- */
.chart-layout-container {
    display: flex;
    flex-direction: column; 
    width: 100%;
    margin: auto;
}
.chart-canvas-container {
    height: 400px;
    width: 100%;
}
.custom-legend-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 4px 8px;
    font-family: sans-serif;
    font-size: 12px;
}
.legend-item.hidden { text-decoration: line-through; color: #999; }
.legend-item img { height: 25px; margin-right: 8px; }
.legend-color-box { width: 12px; height: 12px; display: inline-block; margin-right: 8px; }

/* --- DESKTOP STYLES --- */
@media (min-width: 768px) {
    .chart-layout-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .chart-canvas-container {
        height: 550px;
    }
    .custom-legend-container {
        flex: 0 0 10%;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 0;
        padding-left: 20px;
    }
    .legend-item {
        font-size: 14px;
        margin: 5px 0;
    }
    .legend-item img {height: 35px}
}