/* /Pages/Viewer.razor.rz.scp.css */
@media print {
    /* Hide all Viewer chrome — only the document content prints */
    .viewer-toolbar[b-scs06amend],
    .viewer-error[b-scs06amend] {
        display: none !important;
    }

    /* Unlocking overflow and height here is what allows content to
       flow across multiple print pages. The matching html/body and
       .docizr-viewer-shell rules live in index.html because those
       elements are outside this component's scope. */
    .viewer-content[b-scs06amend] {
        overflow: visible !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* Remove zoom transform — browser print handles scaling */
    .viewer-document[b-scs06amend] {
        transform: none !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
}
