/**
 * ═══════════════════════════════════════════════════════════════════════════
 * EDUBLOC - Styles d'impression
 * ═══════════════════════════════════════════════════════════════════════════
 */

@media print {
    /* Masquer les éléments non imprimables */
    .header,
    .toolbar,
    .footer,
    .modal,
    .toast-container {
        display: none !important;
    }
    
    /* Réinitialiser le body */
    body {
        background: white !important;
        overflow: visible !important;
    }
    
    /* Zone d'édition */
    .editor-container {
        padding: 0 !important;
        overflow: visible !important;
        background: white !important;
    }
    
    .editor {
        max-width: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: white !important;
        font-size: 12pt !important;
        line-height: 1.6 !important;
        color: black !important;
    }
    
    /* Styles de texte pour l'impression */
    .editor p {
        margin-bottom: 0.8em !important;
        orphans: 3;
        widows: 3;
    }
    
    .editor a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    /* Sauts de page */
    .editor h1, .editor h2, .editor h3 {
        page-break-after: avoid;
    }
    
    /* Marges de page */
    @page {
        margin: 2cm;
        size: A4;
    }
}
