﻿/* Scrollbar styles */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(62, 71, 89, 0.74);  
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(22, 119, 243, 0.8);  
}
*
{
    -ms-overflow-style: -ms-autohiding-scrollbar;
}