@import "style.css";

.modules{
    list-style: none;
}

.modules li{

}

.modules li a{
    color: var(--color-body);
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
}

.modules li:hover{
    color: var(--color-primary);
}

.theme-gradient::selection{
    color: #ffffff !important;
    background-clip: unset;
}


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

.list-none li{
    padding: 0;
    margin-bottom: 1rem;
}
.problem-card{
    transition: 0.4s;
}
.problem-card h6:hover{
    text-decoration: underline;
    color: var(--color-primary);
}

::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-gray); /* Thumb color */
}

::-webkit-scrollbar-track {
    background-color: #131323; /* Track color */
}
