﻿
/* REMOVE ALL MARGINS AND PADDING ON PRINT */
@media print {

    body {
        margin: 0 !important;
        padding: 0 !important;
        zoom: 78%; /* Adjust zoom to fit exactly on A4 */
        visibility:hidden;
    }
    #print-area, #print-area * {
        visibility: visible !important;
    }

    #print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
        box-shadow: none !important;
        border: none !important;
    }
    /* Reduce space between rows */
    .row {
        margin: 0 !important;
    }
    /* Shrink images */
    img {
        max-height: 180px !important;
        object-fit: cover;
    }
    /* Tight tables */
    table {
        font-size: 12px !important;
        margin: 0 !important;
    }

    th, td {
        padding: 3px !important;
    }
    /* Remove page breaks */
    * {
        page-break-inside: avoid !important;
    }
}

