#voice-assistant-container {
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 1000000;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    display: none;
}

#voice-status-panel {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 138, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(255, 138, 0, 0.1);
    margin-bottom: 15px;
    color: #fff;
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.voice-status-header {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff8a00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice-transcription {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
    min-height: 40px;
    margin: 10px 0;
}

#mic-btn-floating {
    background: linear-gradient(135deg, #121212 0%, #3e1f14 100%);
    border: 1px solid rgba(255,138,0,0.5);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255,138,0,0.2);
    float: right;
    transition: all 0.3s ease;
}

#mic-btn-floating.listening {
    background: #ff4d4d;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.5);
    border-color: #ffcccc;
    animation: pulseMic 1.5s infinite;
}

.voice-feedback-wave {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: center;
}

.voice-feedback-wave.listening .wave-bar {
    background: #00ff88;
    animation: waveAnim 1s ease-in-out infinite;
}

.wave-bar {
    width: 3px;
    height: 5px;
    background: #444;
    border-radius: 3px;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseMic {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes waveAnim {
    0% { height: 5px; }
    50% { height: 20px; }
    100% { height: 5px; }
}

#manual-stop-btn {
    transition: transform 0.2s ease, background 0.2s ease;
}

#manual-stop-btn:hover {
    transform: scale(1.05);
    background: #ff0000 !important;
}

#manual-stop-btn:active {
    transform: scale(0.95);
}
