/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #4a5568 transparent;
}
