.pagination > a {
    cursor:pointer;
}

.pagination {
    display: flex;
    flex-direction: row;
    
    /* justify-content: space-between; */
    
    align-items: center;
    height: var(--pagina-height);
    width: 100%;
    background-color: var(--c3);
    box-sizing: border-box;
    
    padding: 2px;
}

.pagination a:not(.current):hover {
    background-color: #ddd;
    color: black;
}

.pagination .current{
    /* font-weight: bold; */
    /* color: #4b4b4b; */
    /* background-color: white; */
    font-weight: bolder;
    background-color: var(--cimportantlight);
    color: var(--text-important);
    /* color: var(--cimportant); */
    /* text-shadow: 0px 0px 2px black; */
    
    /* width: auto; */
    text-align: center;
    padding: 2px 5px 0px;
    border-radius: 3px;
    /* box-shadow: inset 0px 0px 2px 1px black; */
    box-sizing: border-box;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 100%;
    width: var(--pagination-h); /* 20px */
    
    margin: 5px;
}

.pagination .prevpage {
    margin-right: auto;
}

.pagination .nextpage {
    /* margin: 5px; */
    margin-left: auto;
}

.pagination a:first-child,
.pagination a:last-child {
    margin: 0;
}

/* NEXT */

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