.css-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.css-pager a {
    text-decoration: none;
    color: #666;
    background: #F4F4F4;
    border: 1px solid #e0e0e0;
    font-weight: bold;
    font-size: 14px;
}

.css-pager a:hover {
    text-decoration: none;
    color: #fff;
    border-color: #3F51B5;
    background-color: #3F51B5;
}

.current_page {
    background-color: #3F51B5;
    border: 1px solid #3F51B5;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.css-pager a,
.current_page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12.5px;
    border-radius: 50px;
}