.paginationButtons{
    display: flex;
    flex-direction: row;
    align-items: stretch;

    background-color: white;

    width: fit-content;

    margin-left: auto;
    margin-right: auto;

    border-color: black;
    border-width: thin;
    border-style: solid;
    border-radius: 10px;

    min-width: 200px;

    padding: 5px;
}

.colButtonLeft{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    
    width: 100%;
    height: auto;

    /*background-color: red;*/



}

.buttonLeft{

    width: 25px;
    height: 25px;

    /*background-color: blue;*/

    background-image: url('/modules/base/news/image/paginate/left-arrow.png');
    background-repeat: no-repeat;
    background-size: 25px 25px;

    cursor: pointer;
}

.colButtonCenter{
    display: flex;
    flex-direction: column;

    /*background-color: rebeccapurple;*/
    width: auto;
    height: auto;
}

.colButtonRight{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    
    width: 100%;
    height: auto;
}

.buttonRight{

    width: 25px;
    height: 25px;

    /*background-color: blue;*/

    background-image: url('/modules/base/news/image/paginate/right-arrow.png');
    background-repeat: no-repeat;
    background-size: 25px 25px;

    cursor: pointer;
}

.buttonCards{
    display: flex;
    flex-direction: row;
    align-items: center;

    padding-top: 5px;
    padding-bottom: 5px;


    width: 100%;
    height: 25px;
    /* background-color: green; */

    border-bottom-style: solid;
    border-bottom-color: black;
    border-bottom-width: 1px;

}

.card{

    display: flex;
    justify-content: center;
    align-items: center;

    width: 25px;
    height: 25px;

    margin-left: 2px;
    margin-right: 2px;

    color: rgb(138, 138, 138);
    border-color: rgb(138, 138, 138);
    border-radius: 5px;
    border-width: thin;
    border-style: solid;

    background-color: #ffFFFF;

    cursor: pointer;

    

}

.card a {
    display: inline-block;
    text-decoration: none;
    color: inherit;

    padding: 3px 7px 3px 7px;

    text-align: center;

    cursor: inherit;
}

.dotted{
    cursor: default;
}

.selected{
    color: black;
    border-color: black;
}

.unclickable{
    cursor: default;
}

/* .separationLine{
    width: 100%;
    height: 3px;
    background-color: black;
} */

.extremeButtons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: auto;
    height: 25px;

    border-top-style: solid;
    border-top-color: black;
    border-top-width: 1px;

    /* background-color: pink; */

    padding-top: 5px;
    padding-bottom: 5px;
}

.extremeButtonLeft{
    width: 22px;
    height: 22px;

    background-image: url('/modules/base/news/image/paginate/left-arrow-FAL.png');
    background-repeat: no-repeat;
    background-size: 22px 22px;

    cursor: pointer;
}


.extremeButtonSeparation{
    height: 100%;
    width: 2px;
    background-color: black;

    margin-left: 5px;
    margin-right: 5px;
}

.extremeButtonRight{
    width: 22px;
    height: 22px;

    background-image: url('/modules/base/news/image/paginate/right-arrow-FAL.png');
    background-repeat: no-repeat;
    background-size: 22px 22px;

    cursor: pointer;
}