/* print.css */
@media print {
    .col-md-8,
    .col-md-7,
    .col-md-6,
    .col-md-5,
    .col-md-4,
    .col-md-3,
    .col-md-2,
    .col-md-1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .fixed-bottom,
    .pagination,
    input[type="text"] {
        display: none;
    }

    /* Show all table rows for printing */
    table tbody {
        display: table-row-group;
    }

    /* Ensure each card has margin on top for better spacing */
    .card {
        margin-top: 20px;
        page-break-inside: avoid;
    }

    /* Ensure chart and table container layouts are optimized for print */
    .chart-summary,
    .text-muted {
    }
    /* Ensure chart canvas scales correctly in print */
    canvas {
        width: 100% !important;
        height: auto !important;
    }

    /* Padding adjustments for container */
    .container {
        width: 100%;
        padding: 0;
    }
}