/* Custom Scrollbar Styles */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) var(--gray-100);
}

/* Thin scrollbar for specific containers */
.gaps-list::-webkit-scrollbar,
.daily-stats-table-container::-webkit-scrollbar,
.modal::-webkit-scrollbar {
    width: 6px;
}
