/* Modern Scrollbar System */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
    filter: brightness(0.9);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

/* Utility to hide scrollbar but keep functionality */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;             /* Chrome, Safari and Opera */
}