/* Print-friendly styles for AgGrid */
@media print {
    /* Ensure grid is fully visible when printing */
    .ag-print .ag-root-wrapper,
    .ag-print .ag-root {
        overflow: visible !important;
    }
    .ag-print .ag-header {
        overflow: visible !important;
    }
    /* Prevent clipping of rotated headers */
    .ag-header-cell-label {
        overflow: visible !important;
    }
    /* So rows don't get cut off at page breaks */
    .ag-print .ag-center-cols-viewport {
        overflow: visible !important;
    }
}
