/* Disabled select clarity */
.gform_wrapper select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Optional: loading state */
.mfcc-er-loading {
    background-image: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 37%,
        #f0f0f0 63%
    );
    background-size: 400% 100%;
    animation: mfcc-er-shimmer 1.2s ease-in-out infinite;
}

@keyframes mfcc-er-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
