/* ==========================================================
   PRINT CSS - KHUSUS CETAK LAPORAN, BUKU TABUNGAN & KARTU SISWA
   ========================================================== */

@media print {
    /* Sembunyikan elemen navigasi dan tombol saat print */
    .no-print,
    .dana-bottom-nav,
    .admin-sidebar,
    .admin-topbar,
    .btn,
    .alert,
    .pagination,
    header,
    footer,
    nav {
        display: none !important;
    }

    body {
        background: #FFFFFF !important;
        color: #000000 !important;
        font-family: 'Times New Roman', Times, serif;
        font-size: 12pt;
        margin: 0;
        padding: 10mm;
    }

    .print-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* KOP SURAT RESMI SEKOLAH */
    .kop-surat {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 3px double #000;
        padding-bottom: 12px;
        margin-bottom: 20px;
        gap: 16px;
    }

    .kop-logo {
        width: 75px;
        height: 75px;
        object-fit: contain;
    }

    .kop-teks {
        text-align: center;
        flex: 1;
    }

    .kop-nama-sekolah {
        font-size: 16pt;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .kop-sub {
        font-size: 10pt;
        margin: 2px 0;
    }

    /* JUDUL LAPORAN */
    .judul-laporan {
        text-align: center;
        margin-bottom: 20px;
    }

    .judul-laporan h3 {
        font-size: 14pt;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0;
        text-decoration: underline;
    }

    .judul-laporan p {
        font-size: 10pt;
        margin: 4px 0 0 0;
    }

    /* TABEL DATA PRINT */
    table.table-print {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        font-size: 10pt;
    }

    table.table-print th,
    table.table-print td {
        border: 1px solid #000;
        padding: 6px 8px;
    }

    table.table-print th {
        background-color: #F0F0F0 !important;
        font-weight: bold;
        text-align: center;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* AREA TANDA TANGAN */
    .ttd-wrapper {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        page-break-inside: avoid;
    }

    .ttd-box {
        text-align: center;
        width: 250px;
    }

    .ttd-jabatan {
        font-weight: bold;
        margin-bottom: 70px;
    }

    .ttd-nama {
        font-weight: bold;
        text-decoration: underline;
    }

    .ttd-nip {
        font-size: 9pt;
    }

    /* CETAK KARTU TABUNGAN SISWA */
    .kartu-tabungan-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15mm;
    }

    .kartu-tabungan-item {
        width: 86mm;
        height: 54mm;
        border: 2px solid #118EEA;
        border-radius: 8mm;
        padding: 4mm 5mm;
        position: relative;
        background: #FFFFFF;
        box-sizing: border-box;
        page-break-inside: avoid;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .kartu-header {
        display: flex;
        align-items: center;
        gap: 6px;
        border-bottom: 1.5px solid #118EEA;
        padding-bottom: 2mm;
    }

    .kartu-logo {
        width: 10mm;
        height: 10mm;
        object-fit: contain;
    }

    .kartu-sekolah-nama {
        font-size: 8pt;
        font-weight: bold;
        text-transform: uppercase;
        color: #0B6FCB;
        line-height: 1.1;
    }

    .kartu-sekolah-sub {
        font-size: 6pt;
        color: #555;
    }

    .kartu-body {
        display: flex;
        gap: 4mm;
        align-items: center;
        margin: 2mm 0;
    }

    .kartu-qr {
        width: 22mm;
        height: 22mm;
        flex-shrink: 0;
    }

    .kartu-info {
        font-size: 7pt;
        line-height: 1.4;
    }

    .kartu-info-row {
        display: flex;
    }

    .kartu-info-label {
        width: 14mm;
        font-weight: bold;
    }

    .kartu-footer {
        font-size: 5.5pt;
        color: #666;
        text-align: center;
        border-top: 1px dashed #CCC;
        padding-top: 1mm;
    }
}
