.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.pagination a {
    color: rgba(208, 208, 208, 1);
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 0 4px;
    border-radius: 4px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a:hover {
    background-color: #ddd;
    border-radius: 100px;
}
 
.pagination a.active {
    background: rgba(0, 140, 149, 1);
    color: white;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    min-width: 40px;
    height: 40px;
}

.pagination .arrow {
    font-weight: bold;
}