/* On screens that are 1024px or wider, arrange the chart and table side by side */
@media (min-width: 1024px) {
    #content {
        display: flex;
        flex-direction: row;
    }
    #chart-container, #table-container {
        width: 50%;
    }
}

/* On screens that are 1023px or narrower, stack the chart and table vertically */
@media (max-width: 1023px) {
    #content {
        display: block;
    }
    #chart-container, #table-container {
        width: 100%;
    }
}
