/* ==============================================================================
 * KURTI COLLEGE - PRINT STYLESHEET
 * Dioptimalkan untuk Pencetakan Sertifikat A4 & Kwitansi / Rekap Data
 * ============================================================================== */

@media print {
    *, *:before, *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        margin: 0;
        padding: 0;
        background: #fff !important;
        font-size: 12pt;
    }

    /* Sembunyikan elemen non-cetak */
    .print\:hidden,
    header,
    nav,
    aside,
    footer,
    .btn-print,
    .no-print {
        display: none !important;
    }

    /* Pastikan halaman sertifikat pas di kertas A4 Landscape */
    @page {
        size: A4 landscape;
        margin: 8mm;
    }

    .certificate-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        page-break-inside: avoid;
    }

    .certificate-frame {
        border: 4pt solid #1e3a8a !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Cetak Invoice / Kwitansi */
    .invoice-container {
        width: 100% !important;
        page-break-inside: avoid;
    }
}
