/* Custom scrollbar */
    ::-webkit-scrollbar { width: 4px; height: 4px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: #27272a; border-radius: 2px; }
    
    .custom-input, .custom-select {
        transition: all 0.2s ease;
    }
    .custom-input:focus, .custom-select:focus {
        box-shadow: 0 0 0 1px #635BFF, 0 0 0 4px rgba(99, 91, 255, 0.1);
        border-color: #635BFF;
        outline: none;
    }
    
    select {
        appearance: none;
        -webkit-appearance: none;
    }

    /* Table specifics */
    .table-row-hover:hover td {
        background-color: rgba(255, 255, 255, 0.02);
    }
    
    /* Smooth toggle */
    .sort-active {
        color: #fff;
        background-color: #27272a;
    }

    /* Dropdown Animation */
    .nav-item:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
