/* Styling untuk Kertas A4 di Layar */
.page-a4 {
    background: white;
    width: 21cm;
    min-height: 29.7cm;
    margin: 0 auto;
    margin-bottom: 2cm;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2cm;
    font-size: 0.875rem; /* 14px */
    line-height: 1.625;
    color: #1f2937;
}

/* Styling Tabel Dokumen */
.sk-table th, .sk-table td {
    border: 1px solid black;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
}
.sk-table th {
    background-color: #f3f4f6;
    font-weight: bold;
}

.text-justify-custom {
    text-align: justify;
    text-justify: inter-word;
}

.diktum-grid {
    display: grid;
    grid-template-columns: 80px 10px 1fr;
    margin-bottom: 6px;
}

/* Format Khusus Saat Print / Cetak (Menghilangkan shadow dan background) */
@media print {
    body { background: white; margin: 0; padding: 0; }
    .no-print { display: none !important; }
    .page-break { page-break-before: always; }
    .page-a4 { 
        margin: 0; 
        padding: 1cm; 
        box-shadow: none; 
        width: 100%; 
        min-height: auto; 
    }
    .sk-table th { -webkit-print-color-adjust: exact; background-color: #f3f4f6 !important; }
}

/* Utilitas Tampilan Mode */
.hidden-view { display: none !important; }
