#cerebro-voz-widget {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Al lado opuesto de otros chats si existen */
    z-index: 99999;
}
.cv-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 220px;
    text-align: center;
    font-family: sans-serif;
    border-bottom: 4px solid #9b59b6;
}
.cv-emojis {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}
.cv-emojis span:hover { transform: scale(1.2); transition: 0.2s; }
#cv-comment {
    width: 100%;
    height: 60px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 12px;
}
.cv-card button {
    background: #9b59b6;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
}