/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #CDCDCD;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #CDCDCD;
    border: none;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:focus {
    background-color: var(--color-primary);
}

*::-webkit-scrollbar-thumb:horizontal:hover,
*::-webkit-scrollbar-thumb:vertical:hover {
    background: var(--color-primary);
}

*::-webkit-scrollbar-thumb:horizontal:active,
*::-webkit-scrollbar-thumb:vertical:active {
    background: var(--color-primary);
}