@media print {
    /* 1. Hide the sidebar, top navigation, and action buttons */
    .k-appbar,
    .no-print {
        display: none !important;
    }

    /* 2. Force the main content area to take up 100% of the page width */
    body > div:not(.k-appbar) {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
    }

    /* 3. Prevent charts from getting awkwardly split across two pages */
    .k-chart,
    .chart-container {
        page-break-inside: avoid;
    }
    
    h4 {
        page-break-after: avoid;
        page-break-before: always;
    }
}