.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    gap: 6px;
}

.pagination .active,
.pagination a:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
    color: #fff;
    border-color: transparent;
}

.pagination li,
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 600;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 14px;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 0;
}

.pagination .disabled {
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
