/* Voice Control Styles */

#voice-control-btn {
    position: relative;
    transition: all 0.3s ease;
    background: #000000 !important;
}

#voice-control-btn:hover {
    background: #333333 !important;
    transform: scale(1.05);
}

#voice-control-btn.listening {
    background: #ff0000 !important;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

#voice-control-btn.processing {
    background: #ff8800 !important;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
    }
}
