@media (min-width: 768px) {
    .custom-scrollbar::-webkit-scrollbar {
        width: 8px;
    }

    .custom-scrollbar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border-radius: 10px;
    }

    .custom-scrollbar::-webkit-scrollbar-thumb {
        background-color: rgba(155, 155, 155, 0.4);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background-color: rgba(104, 104, 104, 0.8);
    }
}