.dbq-processing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 20px;
    
    .dbq-processing-dot {
        width: 6px;
        height: 6px;
        background-color: #555;
        border-radius: 50%;
        animation: processing-pulse 1.2s infinite ease-in-out;

        &:nth-child(2) {
            animation-delay: 0.2s;
        }

        &:nth-child(3) {
            animation-delay: 0.4s;
        }
    } 
} 
  
@keyframes processing-pulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    40% {
        transform: scale(1.4);
        opacity: 1;
    }
}
  