/* Voice Command Interpreter Styles */
.voice-command-interpreter .mic-button {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.voice-command-interpreter .mic-button.listening {
    animation: pulse 1.5s infinite;
    background-color: #dc3545;
    border-color: #dc3545;
}

.voice-command-interpreter #commandOutput,
.voice-command-interpreter #actionFeedback {
    min-height: 150px;
    border: 1px solid #dee2e6;
}

.voice-command-interpreter .command-categories ul {
    margin-left: 1rem;
}

.voice-command-interpreter .command-categories li {
    padding: 0.25rem 0;
    border-bottom: 1px dashed #dee2e6;
}

.voice-command-interpreter .command-categories strong {
    color: #0d6efd;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .voice-command-interpreter .mic-button {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .voice-command-interpreter #commandOutput,
    .voice-command-interpreter #actionFeedback {
        min-height: 120px;
    }
}