.border{
    border: 2px solid red;
    margin: 3px;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.item-center{
    align-items: center;
}
.bg-black{
    background-color: black;
    color: white;
}
.invert{
    filter: invert(1);
}
.bg-grey{
    background-color: #121212;
}
.rounded{
    border-radius: 7px;
}
.m1{
    margin: 5px;
}
.p1{
    padding: 10px;
}
/* For WebKit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #2e2e2e; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #555555; /* Scrollbar thumb color */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 3px solid #2e2e2e; /* Optional border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #888888; /* Color of the scrollbar thumb when hovered */
}

/* For Firefox */
* {
    scrollbar-width: thin; /* Thin scrollbar width */
    scrollbar-color: #555555 #2e2e2e; /* Thumb color, Track color */
}

/* For Internet Explorer and Edge */
body {
    -ms-overflow-style: scrollbar; /* Show the scrollbar in IE and Edge */
}
