/* ================================
   PRINT STYLESHEET FOR HELP PAGES
   ================================ */

@media print {

    /* Remove navigation, sidebar, buttons */
    nav, .navbar, .list-group, button, .btn, footer {
        display: none !important;
    }

    /* Expand content to full width */
    .container, .container-fluid, .row, .col-md-9, .col-lg-10 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Improve readability */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff !important;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
        color: #000 !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
        margin: 10px 0;
    }

    /* Page breaks before major sections */
    h1 {
        page-break-before: always;
    }

    /* But not on the very first page */
    h1:first-of-type {
        page-break-before: avoid;
    }

    /* Remove shadows and rounded corners for print clarity */
    .shadow-sm, .rounded {
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    /* Remove hyperlinks underline and show plain text */
    a {
        color: #000 !important;
        text-decoration: none !important;
    }

    /* Optional: show URL after links (useful for printed manuals) */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
}
