/* Load More Button Styles */
.ggg-load-more-container {
    margin: 20px 0;
    text-align: center;
}

.ggg-load-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.ggg-load-more-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.ggg-load-more-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Loading animation */
.ggg-loading .ggg-items-container {
    opacity: 0.7;
}

/* Smooth appearance for new items */
.ggg-card {
    animation: gggFadeInUp 0.5s ease;
}

@keyframes gggFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination widget wrapper */
.ggg-pagination-widget {
    position: relative;
}