#views {
    display: flex;
    gap: 5px;
    
    border: none;
    margin-bottom: 0;
}


#views .view {
    all: unset;
    height: 40px;
    margin: 0;


    border-bottom: 1px solid var(--border-color);
    /* background-color: #f9f9f9; */

}

#views .current-view {

    background-color: white;

    border-bottom: 3px solid var(--primary-light);

    color: #202020;
}

#views .current-view span {
    font-weight: bold;
    display: flex;
    height: 100%;
    
    align-items: center;
    justify-content: center;

    gap: 4px;
}

#views .view a {
    display: flex;
    height: 100%;
    
    align-items: center;
    justify-content: center;

    gap: 4px;

    border-radius: 0;
}

#views .view a i.fa {
    color: var(--primary-light);
}

#views .view a:hover {
    background-color: #f1f1f1;
    color: var(--primary-dark);
}

#views .view a:hover i.fa {
    color: var(--primary-dark);
}



@media (max-width: 635px) {

    #views {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 0;
    }
}