.flex{
    display: flex;
}

.justifycontent{
    justify-content: space-between;
}

.aligncenter{
    justify-content: center;
}

.bg-red{
    border: 1px red solid;
    margin: 3px;
}

.bg-black{
    border: 1px black solid;
    background-color: black;
}

.bg-grey{
    background-color: #1f1f1f;
    color: white;
}
.invert{
    filter: invert(1);
}

.rounded{
    border-radius: 7px;
}

.m1{
    margin: 10px;
}
.m2{
    margin-top: 8px;
    margin-right: 5px;
}

.p1{
    padding: 10px;
}

.resize{
    height: 28px;
    width: 28px;
}

/* NOT UTILITY BUT EXTRA */

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px; /* Adjust width of the scrollbar */
    background-color: #2c2c2c; /* Dark background for the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #555; /* Darker color for the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* Lighter color for the scrollbar thumb on hover */
}



