/* Apply styles only when printing */
@media print {
    .site-header,
    .site-footer,
    #bd-sidebar {
        display: none !important;
    }

    /* Optionally, optimize layout for printing */
    body {
        background: none !important;
        color: #000 !important;
        font-size: 12pt;
    }

    a {
        text-decoration: none;
        color: #000 !important;
    }

    /* Prevent page break issues */
    .no-print-break {
        page-break-inside: avoid;
    }
}