        .sidebar-wrapper {
            display: flex;
            flex-direction: column;
            height: 100vh;
            /* biar full tinggi layar */
        }

        .sidebar-menu {
            flex: 1;
            /* isi ruang kosong, dorong footer ke bawah */
        }

        .sidebar-footer {
            margin-top: auto;
            /* otomatis nempel di bawah */
            padding: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        #particle-animation {
            position: fixed;
            z-index: -1;
            /* Lebih rendah dari sidebar */
            pointer-events: none;
            /* Biarkan klik menembus */
        }

        #sidebar {
            z-index: 1000;
            /* Lebih tinggi dari particle animation */
            position: relative;
            /* Pastikan z-index bekerja */
        }