/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: #64748b;
    border: 3px solid #e2e8f0;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #64748b #e2e8f0;
}
