
        :root {
            --glass-border: rgba(255, 255, 255, 0.5);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #eef2f6;
            background-image: 
                radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(56, 189, 248, 0.15) 0px, transparent 50%);
            background-attachment: fixed;
            margin: 0;
            padding: 40px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #1e293b;
            min-width: 1200px; /* Lebar minimum fix */
            overflow-x: auto;  /* Biar bisa di-scroll ke samping jika perlu */
        }

        /* A4 Glass Container */
        .page-a4 {
            width: 210mm;
            min-height: 297mm;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid white;
            box-shadow: 
                0 20px 40px -5px rgba(0, 0, 0, 0.1), 
                0 10px 20px -5px rgba(0, 0, 0, 0.05),
                inset 0 0 0 1px rgba(255,255,255,0.5);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-bottom: 40px;
        }

        /* Typography First Headings */
        h1, h2, h3, h4, h5 {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Header Styling */
        .header-modern {
            position: relative;
            padding: 3rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        /* Header Mini untuk Halaman 2-10 */
        .header-mini {
            position: relative;
            padding: 1.5rem 3rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            background: rgba(255, 255, 255, 0.9);
        }

        .header-bg-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-image: url('img/keraton.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            mask-image: linear-gradient(to right, transparent, black);
            -webkit-mask-image: linear-gradient(to right, transparent, black);
            z-index: 0;
            pointer-events: none;
        }

        .header-mini .header-bg-image {
            width: 40%;
            opacity: 0.1;
        }

        /* Glass Cards inside */
        .glass-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

/* --- GANTI CSS .glass-title-2025 DENGAN INI --- */

.title-clean-header {
    /* Hapus background dan border kotak */
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    
    /* Layout */
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Agar teks sejajar di bawah */
    padding-bottom: 1.5rem; /* Jarak ke garis bawah */
    margin-bottom: 2rem;    /* Jarak ke chart */
    
    /* Garis pemisah super tipis dan elegan di bawah */
    border-bottom: 1px solid rgba(148, 163, 184, 0.2); 
    position: relative;
}

/* Dekorasi kecil (dot) agar manis tapi tidak norak */
.title-clean-header::after {
    content: '';
    position: absolute;
    bottom: -1.5px; /* Agar menimpa garis */
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}
        

        /* Chart Styling */
        .chart-wrapper {
            position: relative;
            background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 
                0 10px 15px -3px rgba(0, 0, 0, 0.05),
                inset 0 0 20px rgba(255,255,255,0.8);
        }

/* Modern Minimalist Table */
        .table-glass {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 10px; /* Font kecil sesuai request */
        }
        
        .table-glass thead th {
            text-align: left;
            padding: 10px 12px;
            color: #64748b;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            background: rgba(255,255,255,0.5);
        }
        
        .table-glass tbody td {
            padding: 8px 12px;
            color: #334155;
            border-bottom: 1px solid rgba(0,0,0,0.02);
            font-weight: 500;
        }
        
        .table-glass tbody tr:last-child td {
            border-bottom: none;
        }
        
        .table-glass tbody tr:hover td {
            background: rgba(255,255,255,0.4);
        }

        /* Status Indicator Dot */
        .status-dot {
            height: 6px; width: 6px; 
            border-radius: 50%; 
            display: inline-block; 
            margin-right: 6px;
        }

        /* Debug Info */
        .debug-info {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            max-height: 200px;
            overflow-y: auto;
        }

        /* Print Specifics */
        @media print {
            body {
                background: none;
                padding: 0;
            }
            .page-a4 {
                width: 100%;
                min-height: 297mm;
                border-radius: 0;
                box-shadow: none;
                border: none;
                background: white;
                margin: 0;
                page-break-after: always;
            }
            .no-print {
                display: none !important;
            }
            .chart-wrapper, .glass-card, .glass-title-2025 {
                box-shadow: none;
                border: 1px solid #eee;
            }
            * {
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
            }
        }
      
/* UPDATE BAGIAN INI DI CSS PALING BAWAH */
        @media screen and (max-width: 900px) {
            body {
                /* 1. Zoom out agar muat (sesuaikan angka ini jika kurang pas) */
                /*zoom: 0.60; */
                
                /* 2. KUNCI: Paksa lebar body SAMA PERSIS dengan lebar kertas A4 (210mm) */
                min-width: 210mm !important; 
                width: 210mm !important;
                
                /* 3. Hapus margin/padding samping body agar kertas mentok ke pinggir */
                margin: 0 auto !important; 
                padding: 30px 0 !important; /* Hanya padding atas bawah */
                
                /* Reset display flex agar centering tidak membuat gap samping */
                display: block !important; 
                overflow-x: hidden; /* Mencegah geser kanan-kiri */
            }

            .page-a4 {
                /* Pastikan kertas berada di tengah */
                margin: 0 auto 30px auto !important;
                
                /* Opsional: Mematikan border radius di HP agar terlihat lebih 'native' */
                /* border-radius: 0 !important; */ 
            }

            /* Tombol cetak diperbesar untuk jari */
            .no-print button {
                transform: scale(1.8);
                transform-origin: bottom right;
                bottom: 20px !important;
                right: 20px !important;
            }
        }
        
    .glass-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(241, 245, 249, 0.8);
        border-radius: 8px;
        box-shadow: 
            0 1px 3px 0 rgba(0, 0, 0, 0.05),
            0 1px 2px -1px rgba(0, 0, 0, 0.03);
    }
    
    table tbody tr td {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        color: #475569;
        border-bottom: 1px solid #f1f5f9;
    }
    
    table tbody tr:last-child td {
        border-bottom: none;
    }
    
    table thead tr th {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #334155;
        background-color: #f8fafc;
    }
