.custom-pagination .page-link {
    border: none;
    margin: 0 4px;
    border-radius: 6px;
    padding: 8px 14px;
    color: #555;
    background: #f3f3f3;
    transition: 0.3s ease;
}

.custom-pagination .page-link:hover {
    background: #e5e5e5;
}

.custom-pagination .page-item.active .page-link {
    background: #2d1c66;
    color: #fff;
    font-weight: 600;
}

.custom-pagination .page-item.disabled .page-link {
    background: #eee;
    color: #aaa;
}

@media (max-width: 576px) {

    .custom-pagination {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .custom-pagination .page-item {
        flex: 0 0 auto;
    }

    .custom-pagination .page-link {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Hide First & Last buttons on mobile */
    .custom-pagination .first-last {
        display: none;
    }
}