﻿/* /////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */
/* PaginationFrame */

#paginationPanel {
    width: 100%;  
    height: 50px;
    padding: 3px;
    border: 1px solid rgb(221, 221, 221);  
    position: absolute;
    background-color:whitesmoke;
    bottom: 0px;
}

#paginationCurrentPage {
    border: 1px solid silver;
    float: right;
    font-size: 16px;
    border-radius: 7px;
    margin-right: 2px;
    margin-top: 2px;
    padding: 2px;
    padding-left: 25px;
    padding-right: 25px;
    font-family: IRANSANSWEB;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height:35px;
}

.PaginationButton {
    text-align: center;
    width: 33px;
    height: 33px;
    border: 1px solid silver;
    float: right;
    margin-right: 2px;
    margin-top: 2px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    background-color: rgb(25, 164, 236);
    color: white;
}

    .PaginationButton:hover {
        background-color: rgb(86, 190, 255);
        color: white;
    }

    .PaginationButton:active {
        box-shadow: 0px 0px 2px lime;
    }

#mountOfRowsInPage_cbx {
    width: 95px;
    float: right;
}


