/* Nothing special on screen */
@media screen {
}

/* Print-specific styling for clean PDF output */
@media print {

    /* Use A4 size and reasonable margins */
    @page {
        size: A4;
        margin: 12mm;
    }

    /* Hide header, sidebar, toolbar, footer, and version selector */
    header.navbar,
    .nav,
    .nav-container,
    .toolbar,
    footer.footer,
    .page-versions {
        display: none !important;
    }

    /* Expand main content to full width */
    .article,
    .doc {
        max-width: 100% !important;
    }

    /* Optional: make code blocks white in PDF */
    /* pre, code, .highlight {
      background: #fff !important;
      color: #000 !important;
    } */
    /* Remove URL text after links */
    a[href]:after {
        content: "";
    }
}
