/* Dunne scrollbar voor de filterkolom (alleen als overflow actief is op grote schermen) */
@media (min-width: 1024px) {
    #filtersSection {
        scrollbar-width: thin;
        scrollbar-color: rgba(148, 163, 184, 0.8) transparent;
    }

    #filtersSection::-webkit-scrollbar {
        width: 6px;
    }

    #filtersSection::-webkit-scrollbar-track {
        background: transparent;
    }

    #filtersSection::-webkit-scrollbar-thumb {
        background-color: rgba(148, 163, 184, 0.8);
        border-radius: 999px;
    }
}