/* Print styles: used for invoices and other printable documents.
   Hides navigation chrome and resets colours/backgrounds for paper. */

@media print {
    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .no-print,
    .app-sidebar,
    .auth-card button,
    form button {
        display: none !important;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    .page,
    .auth-card {
        box-shadow: none;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    @page {
        margin: 12mm;
    }
}
