.border-red{
    border: 2px solid red;
}

.border-green{
    border: 2px solid green;
}
.border-sky{
    border: 2px solid rgb(0, 113, 128);
}

.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.items-center{
    align-items: center;
}

.invert{
    filter: invert(1);
}

.bg-black{
    background-color: black;
    color: white;
}

.bg-gray{
    background-color: #1f1f1f;
}
.bg-orange{
    background-color: orange;
}

.list-dec{
    list-style: none;
}

.rounded{
    border-radius: 50%;
}

/* Webkit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.7);
    border-radius: 10px;
    border: 2px solid #1e1e1e;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(150, 150, 150, 0.9);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 100, 100, 0.7) #1e1e1e;
}