.flex{
    display: flex;
    margin: 5px;
} 
.justify-content{
    justify-content: center;
}
.between{
    justify-content: space-between;
}
.align-items{
    align-items: center;
}
.flex-direction{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bg-black{
    background-color: black;
    color: white;
}
.bg-grey{
    background-color: #121212;
}
.rounded{
    border-radius: 0.4rem;
}
.m-2{
    margin: 5px;
}
.p-1{
    padding: 10px;
}
.invert{
    filter: invert(1);
}

::-webkit-scrollbar {
    width: 10px; /* Scrollbar width */
}


::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
    cursor: grab !important;
}
::-webkit-scrollbar-thumb:active {
    cursor: grabbing !important;
}