.border {
    border: 2px solid red;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.ul {
    list-style-type: none;
}

.invert {
    filter: invert(1);
}

.heading {
    font-size: 25px;
    margin-bottom: 25px;
}

.bold {
    font-weight: bold;
}



/* For Webkit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
    /* background-color: transparent; */
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    /* Dark color for the thumb */
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background-color: #222;
    /* Dark color for the track */
}


/* For Firefox */
/* scrollbar-color: #333 #222; */
/* Dark color for the thumb and track in Firefox */