/* Styles d'impression pour les rapports et fiches */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    nav, .no-print, footer {
        display: none !important;
    }

    main {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .print-only {
        display: block !important;
    }

    .print-container {
        border: none !important;
        box-shadow: none !important;
    }

    @page {
        margin: 1.5cm;
    }
}

.print-only {
    display: none;
}
