/*pagination start*/
.paginationContainer{
    display: flex;
    justify-content: flex-end;
}
.pagination i{
    font-size: 26px;
}
.paginationElement{
    color: black;
    background-color: #c0c0bd;
    outline: none;
    border: 2px solid black;
    height: 40px;
    width: 40px;
    text-align: center;
    transition-duration: 300ms;
    font-size: 26px;
}
.paginationElement:hover{
    cursor: pointer;
    background-color: transparent;
}
/*pagination end*/

#paginationSelectedElement{
    background-color: #1f4bf0;
    color: white;
}