#voice-container {
    max-height: 500px;
    overflow-y: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: justify;
}
.voice-bot {
    color: rgb(255, 255, 255);
    text-align: justify;
    margin: 8px 0;
    padding: 10px;
    background-color: #889d89;
    border-radius: 8px;
    max-width: 100%;
    align-self: flex-start;
    line-height: 1.5;
}

#voice-user, #voice-container {
    flex-grow: 1;
    overflow-y: auto;  /* Rolagem vertical quando necessário */
    max-height: 500px; /* Altura máxima (ajuste conforme necessário) */
    padding: 10px;
    border: 1px solid #eee; /* Opcional: para visualização */
}

/* Remove rolagens horizontais indesejadas */
#voice-user pre, #voice-container pre {
    white-space: pre-wrap;
    overflow-x: hidden;
}