/* === Mia Voice Styles === */
/* ატვირთე: assets/css/mia-voice.css */

.speak-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    flex-shrink: 0;
}
.speak-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    transform: scale(1.1);
}
.speak-btn.speaking {
    background: rgba(139, 92, 246, 0.4);
    color: #fff;
    animation: pulse-speak 1.5s infinite;
}
@keyframes pulse-speak {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}

/* Voice Toggle ღილაკი */
#mia-voice-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
#mia-voice-toggle.voice-on {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}
#mia-voice-toggle.voice-off {
    opacity: 0.5;
}

/* Mia პასუხის ხმის ღილაკი */
.mia-response-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.mia-response-header .speak-btn {
    width: 28px;
    height: 28px;
}