.dialogo.Mel {
    color: #e183a3;
}
.dialogo.Ados {
    color: #97d8f6;
}
.pensamiento.Ados {
    color: #7b95ff;
}

.chat {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #0d0d0d;
    max-width: 480px;
    margin: 2em auto;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 0 10px #f2f2f2;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    width: fit-content;
}
.msg.mel {
    align-self: flex-start;
    text-align: left;
}
.msg.ados {
    align-self: flex-end;
    text-align: right;
    align-items: flex-end;
}
.meta {
    color: #888;
    font-size: 0.85em;
    margin-bottom: 0.2em;
}
.user.ados {
    color: #66c0ff;
    font-family: 'Courier New', Courier, monospace;
}
.user.mel {
    color: #e91e63;
    font-style: italic
}
.text {
    white-space: pre-line;
    line-height: 1.5;
}
.text.mel {
    border-radius: 4px 16px 16px 16px;
    background-color: #f0d3e0;
    padding: 8px;
}
.text.ados {
    border-radius: 16px 4px 16px 16px;
    background-color: #d1d9ff;
    padding: 8px;
}
.text.mel.emoji {
    font-size: 24px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.tooltip .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}