﻿@media print {
    body * {
        visibility: hidden;
        font-size: 7pt;
    }

    #printThis, #printThis * {
        visibility: visible;
    }

    #printThis {
        position: absolute;
        left: 0;
        top: 0;
    }
    .table-responsive {
        width: 100%;
        height: 100%;
        overflow: unset;
        overflow-y: unset;
        margin: 0 0;
        padding: 0;
    }
    .col-6 {
        display: block; /* Force columns to stack */
        width: 100%; /* Take full width */
        page-break-before: always; /* Force a new page break before each column */
    }
    .row {
        display: block;
        margin: 0;
    }

    .container, .row {
        width: 90%;
        max-width: none; /* Remove any max-width restrictions */
        padding: 0;
        margin: 0;
    }

}
