@media print {
    @page {
        size: A3;
    }

    /* Hide navigation, footer, and other non-essential elements */
    nav, footer, .btn, .no-print {
        display: none !important;
    }

    /* Adjust the main content to use full width */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background-color: #fff;
        zoom: 80%;
        font-size: small;
    }

    .container-xl {
        width: 100%;
        max-width: 100%;
    }

    /* Ensure images are scaled correctly */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Adjust the font size for print */
    body, h1, h2, h3, h4, h5, h6, p, div {
        font-size: 12pt;
    }

    /* Remove any background colors */
    .card-header, .card-body {
        background-color: #fff !important;
    }

    /* Ensure table borders are visible */
    table {
        border-collapse: collapse;
        width: 100%;
    }

    th, td {
        border: 1px solid #000;
        padding: 8px;
    }

    /* Adjust iframe (map) to fit print layout */
    iframe {
        width: 100%;
        height: auto;
    }
}