/**
 * Orphan Sponsorship Manager - Common Styles
 */

/* Loading spinner */
.os-spinner-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.os-spinner {
    animation: os-spin 1s linear infinite;
    width: 16px;
    height: 16px;
}

@keyframes os-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Sticky button on mobile */
.sticky-clone-button {
    border-radius: 8px !important;
}

.sticky-clone-button .elementor-button-content-wrapper {
    flex-direction: row-reverse;
}

/* Product load error */
#product-load-error {
    margin: 15px 0;
}

/* Disabled form elements */
button:disabled {
    cursor: not-allowed !important;
}

/* Validation error styling */
input.error,
select.error {
    border-color: #FDA29B !important;
}

.rc-error {
    border: 1px solid #FDA29B !important;
    padding: 10px !important;
}

.el-error {
    border-color: #FDA29B !important;
}