/* MIC BUTTON - Clean linear style */
#microphone-button {
    transition: all 0.2s ease;
}

@media (hover: hover) {
    #microphone-button:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

#microphone-button:active {
    transform: scale(0.98);
}

#microphone-button.recording {
    background: #E400A0;
    transition: background 0.2s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.mic-pulse {
    animation: pulse 1.5s infinite;
}

.mic-inactive {
    background: #6b6b6b;
}

.mic-activating {
    background: var(--brand-cobalt-blue);
    animation: pulse 0.8s infinite;
}

.mic-listening {
    background: #E400A0;
}

.mic-recording {
    background: #10b981;
}

.mic-waiting {
    background: #0891b2;
}

.mic-processing {
    background: var(--brand-electric-violet);
    animation: pulse 0.8s infinite;
}