
.pagination {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 6px;
    margin-bottom:16px ;
    list-style: none;
    background: linear-gradient(135deg, #f7faff 0%, #f9fff8 100%);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(228, 77, 46, 0.08);
}

.page-item {
    transition: transform 0.2s, box-shadow 0.2s;
}

.page-item:not(.disabled):hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 2px 8px rgba(228, 77, 46, 0.12);
}

.page-link {
    display: inline-block;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    /* font-size: 1.1rem; */
    font-weight: 600;
    color: #636363;
    background: rgba(255,255,255,0.85);
    border: none;
    text-align: center;
    line-height: 38px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(228, 77, 46, 0.04);
}

.page-link:hover,
.page-link:focus {
    background: linear-gradient(135deg, #fdac98 0%, #E44D2E 100%);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #E44D2E 0%, #fdac98 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(228, 77, 46, 0.18);
    cursor: default;
}

.page-item.disabled .page-link {
    background: transparent;
    color: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 600px) {
    .pagination {
        gap: 2px;
        border-radius: 12px;
    }
    .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 0.95rem;
        border-radius: 8px;
        line-height: 28px;
        padding: 0 6px;
    }
}