#paginationtab {
    margin-top: 10px;
}

.pagelinker {
    padding: 5px 10px;
    margin: 1px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    color: rgb(35, 35, 35);
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size:12px;
    border-radius: 3px;
    text-decoration: none;
}

.pagelinker.active {
    background-color: rgb(24, 72, 160);
    color: white;
    font-weight: bold;
    cursor: not-allowed;
}

a.pagelinker:hover {
    background-color: rgb(210, 211, 210);
    color: #000000;
}

.pagelinker.disabled {
    color: #ccc;
    cursor: not-allowed;
}