/* File Upload Loading States */
@keyframes ovlera-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.is-uploading-btn svg {
    animation: ovlera-spin 1s linear infinite !important;
    transform-origin: center;
    display: inline-block;
}

.uploading-file-row {
    opacity: 0.7;
    position: relative;
    pointer-events: none;
}

.uploading-file-row::after {
    content: 'Uploading...';
    position: absolute;
    right: 1rem;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uploading-file-row .file-row-icon {
    animation: ovlera-spin 2s linear infinite;
}
