/* Custom pagination styles */
.pagination-wrapper {
    margin-top: 50px;
    margin-bottom: 80px;
    text-align: center;
}

.pages {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pages a,
.pages span {
    display: inline-block;
    padding: 10px 15px;
    min-width: 40px;
    text-align: center;
    color: #009490;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.pages a:hover {
    background-color: #009490;
    color: #fff;
    border-color: #009490;
}

.pages .current {
    background-color: #009490;
    color: #fff;
    border-color: #009490;
    font-weight: 600;
    cursor: default;
}

.pages .dots {
    border: none;
    background: none;
    color: #999;
    cursor: default;
}

.pages .prev,
.pages .next {
    font-size: 18px;
    padding: 10px 12px;
    min-width: auto;
}

.pages .disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pages .prev:hover,
.pages .next:hover {
    background-color: #009490;
    color: #fff;
    border-color: #009490;
}

/* Responsive */
@media (max-width: 576px) {
    .pagination-wrapper {
        margin-bottom: 60px;
    }
    
    .pages {
        gap: 4px;
    }
    
    .pages a,
    .pages span {
        padding: 8px 10px;
        min-width: 35px;
        font-size: 14px;
    }
    
    .pages .prev,
    .pages .next {
        padding: 8px 10px;
        font-size: 16px;
    }
}