.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li {
    margin: 0px 3px;
}

.pagination .page-number a {
    font-family: Inter;
    font-size: 20px;
    line-height: 15px;
    font-weight: 400;
    padding: 8px 11px;
    border-radius: 5px;
    color: #14293b;
}

.pagination .page-number a:hover {
    background-color: #14293b;
    color: white;
}

.pagination .page-dots {
    font-family: Inter;
    font-size: 20px;
    line-height: 15px;
    font-weight: 400;
    color: #00F7D0;
    align-self: flex-end;
}

.pagination .active > a {
    background-color: #00F7D0;
    border-color: #084E72;
    color: #fff;
}

.pagination .prev-page a{
    background-color: transparent;
    border: unset;
    height: 23px;
    padding: 0px;
    margin-right: 10px;
}
.pagination .next-page a{
    background-color: transparent;
    border: unset;
    height: 23px;
    padding: 0px;
    margin-left: 10px;
}

.pagination .next-page.disabled, .pagination .prev-page.disabled {
    cursor: not-allowed;
    opacity: .65;
}