.field-processing-status {
    display: none;
    margin-top: 6px;
    color: #667085;
    font-size: 13px;
    line-height: 1.3;
}

.field-processing-status.is-visible {
    display: block;
}

.is-processing {
    background-image: linear-gradient(90deg, rgba(30, 136, 229, 0.04), rgba(30, 136, 229, 0.14), rgba(30, 136, 229, 0.04));
    background-size: 200% 100%;
    animation: field-processing-pulse 1.2s linear infinite;
}

.qa-field-reset {
    border-color: #d92d20 !important;
    box-shadow: 0 0 0 2px rgba(217, 45, 32, 0.15);
}

.qa-page-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
}

.qa-page-loader.is-visible {
    display: flex;
}

.qa-page-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #1d2939;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.qa-page-loader__spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #d0d5dd;
    border-top-color: #1e88e5;
    border-radius: 50%;
    animation: qa-page-loader-spin 0.8s linear infinite;
}

.qa-page-loading,
.qa-page-loading body {
    overflow: hidden;
}

@keyframes field-processing-pulse {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

@keyframes qa-page-loader-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .is-processing {
        animation: none;
    }


    .qa-page-loader__spinner {
        animation: none;
    }
}
