.border{
    border: 1px solid red;
    margin: 3px;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.bg-grey{
    background-color: #121212;
}
.invert{
    filter: invert(1);
}
.rounded{
    border-radius: 10px;
}
.m-1{
    margin: 10px;
}
.p-1{
    padding: 10px;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1d1d1d; /* Dark background color */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #494949; /* Darker color for the scrollbar thumb */
    border-radius: 20px;
    border: 3px solid #1d1d1d; /* Border color for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #999; /* Lighter color when hovered */
}

/* Firefox Scrollbar */
/* For Firefox, you need to use the scrollbar-color and scrollbar-width properties */
/* Here we're setting a dark background with light thumb color */
/* Adjust as needed */
body {
    scrollbar-color: #666 #333; /* Thumb color, track color */
    scrollbar-width: thin;
}
