        @keyframes cpanalyzer-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .cpanalyzer-waiting-banner {
            animation: cpa-pulse 2s infinite;
        }
        @keyframes cpa-pulse {
            0% { box-shadow: 0 0 5px rgba(255, 152, 0, 0.3); }
            50% { box-shadow: 0 0 15px rgba(255, 152, 0, 0.6); }
            100% { box-shadow: 0 0 5px rgba(255, 152, 0, 0.3); }
        }
