/**
 * Print Styles for Certificates
 */

@media print {
    @page {
        size: A4;
        margin: 1cm;
    }
    
    * {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt;
    }
    
    .certificate-card {
        box-shadow: none !important;
        border: 3px solid #000;
        page-break-inside: avoid;
    }
    
    .certificate-header {
        background: #1E3A8A !important;
        -webkit-print-color-adjust: exact;
    }
    
    .progress-fill {
        background: #1E3A8A !important;
    }
    
    .no-print {
        display: none !important;
    }
}