#show-more-pagination-options {
    width: 200px;
    border-radius: 8px;
    padding: 4px 16px;
    background: var(--color-secondary);
    color: white;
    border: 0;
    font-weight: 500;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.show-more-btn[data-state="initial"] .btn-label-loading {
    display: none;
}

.show-more-btn[data-state="loading"] .btn-label-initial {
    display: none;
}

.show-more-btn[data-state="loading"] {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}