@media print {
    /* Set the page size to A4 and define appropriate margins */
    body {
        width: 210mm;
        height: 297mm;
        margin: 10mm 15mm 10mm 15mm; /* Adjust margins as necessary */
        background: white; /* Set background to white */
        color: black; /* Set text color to black for better clarity */
        font-size: 12pt; /* Adjust font size for print */
        line-height: 1.5; /* Adjust line height for readability */
    }
    

    /* Hide non-essential elements for printing */
    .pgl-footer, .ads, .pgl-properties,  .btn-primary, .flex-direction-nav, ul.navbar-nav { 
        display: none; 
    }

    
    /* Ensure images fit within the page and don't break across pages */
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    /* Adjust tables to fit within page margins and be readable */
    table, div.content, div.sidebar {
        width: 100%;
    }
    th, td {
        page-break-inside: avoid;
    }
}
