<style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
        }
        @media print {
            .no-print {
                display: none !important;
            }
            .print-area {
                width: 100% !important;
                max-width: 100% !important;
                box-shadow: none !important;
                margin: 0 !important;
                padding: 0 !important;
            }
        }

        /* Desain Transisi Sidebar Minimize Desktop */
        @media (min-width: 768px) {
            .sidebar-minimized {
                width: 5rem !important;
            }
            .sidebar-minimized .menu-text,
            .sidebar-minimized .brand-text,
            .sidebar-minimized .profile-detail,
            .sidebar-minimized .menu-header {
                display: none !important;
            }
            .sidebar-minimized .menu-item {
                justify-content: center !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .sidebar-minimized .profile-container {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                padding: 1rem 0.5rem !important;
            }
            .sidebar-minimized .brand-container {
                justify-content: center !important;
                padding: 1.25rem 0.5rem !important;
            }
        }

        /* e. Kustomisasi Tema Light untuk Sidebar */
        .sidebar-light {
            background-color: #ffffff !important;
            color: #1e293b !important;
            border-right: 1px solid #e2e8f0 !important;
        }
        .sidebar-light .brand-border {
            border-color: #e2e8f0 !important;
        }
        .sidebar-light .brand-text {
            color: #0f172a !important;
        }
        .sidebar-light .profile-bg {
            background-color: #f8fafc !important;
            border-color: #e2e8f0 !important;
        }
        .sidebar-light .profile-name {
            color: #1e293b !important;
        }
        .sidebar-light .menu-header {
            color: #94a3b8 !important;
        }
        .sidebar-light .menu-item {
            color: #475569 !important;
        }
        .sidebar-light .menu-item:hover {
            background-color: #f1f5f9 !important;
            color: #0f172a !important;
        }
        .sidebar-light .menu-item.active-menu {
            background-color: #2563eb !important;
            color: #ffffff !important;
        }
        .sidebar-light .bottom-border {
            border-color: #e2e8f0 !important;
        }

        /* a. Desain Premium Scrollbar Sidebar (Menyelesaikan bug scrollbar putih aneh) */
        #sidebar::-webkit-scrollbar,
        #sidebar nav::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }
        #sidebar::-webkit-scrollbar-track,
        #sidebar nav::-webkit-scrollbar-track {
            background: transparent;
        }
        #sidebar::-webkit-scrollbar-thumb,
        #sidebar nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 9999px;
        }
        #sidebar::-webkit-scrollbar-thumb:hover,
        #sidebar nav::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.35);
        }

        /* Scrollbar Dinamis Mengikuti Warna Tema Sidebar Light */
        .sidebar-light::-webkit-scrollbar-thumb,
        .sidebar-light nav::-webkit-scrollbar-thumb {
            background: rgba(148, 163, 184, 0.3) !important;
        }
        .sidebar-light::-webkit-scrollbar-thumb:hover,
        .sidebar-light nav::-webkit-scrollbar-thumb:hover {
            background: rgba(148, 163, 184, 0.6) !important;
        }
    </style>