body {
            font-family: 'Inter', sans-serif;
            background-color: #f3f4f6; /* bg-gray-100 */
            color: #374151; /* text-gray-700 */
        }
        /* Custom scrollbar untuk estetika yang lebih baik */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        /* Transisi untuk sidebar */
        .sidebar-transition {
            transition: all 0.3s ease;
        }
        
        /* Overlay untuk mobile */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 40;
        }
        
        /* Toggle button untuk mobile */
        .sidebar-toggle {
            display: none;            
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .sidebar-toggle {
                display: block;
            }
            
            .sidebar-overlay.active {
                display: block;
            }
            
            /* Sidebar default tertutup di mobile */
            aside {
                transform: translateX(-100%);
                position: fixed;
                height: 100vh;
                z-index: 50;
            }
            
            /* Sidebar terbuka di mobile */
            aside.active {
                transform: translateX(0);
            }
            
            /* Konten utama menyesuaikan */
            main {
                margin-left: 0 !important;
                width: 100%;
            }
        }
        .dropdown-aksi {
            transition: all 0.3s ease;
            transform-origin: top right;
        }
        .dropdown-hidden {
            opacity: 0;
            transform: scale(0.95);
            visibility: hidden;
        }
        .dropdown-visible {
            opacity: 1;
            transform: scale(1);
            visibility: visible;
        }
        .btn-action {
            transition: all 0.2s ease;
        }
        .btn-action:hover {
            transform: scale(1.05);
        }
        .btn-setting {
            transition: all 0.3s ease;
        }
        .btn-setting:hover {
            transform: rotate(45deg);
        }