.chat-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: #f9f9f9;
    padding: 16px;
    border-radius: 10px;
}

.chat-message {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 16px;
    word-wrap: break-word;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 60%;
}

.chat-message.user {
    align-self: flex-end;
    background-color: #d4edda;
    border: 1px solid #b2dfdb;
}

.chat-message.assistant {
    align-self: flex-start;
    background-color: #f1f0f0;
    border: 1px solid #ddd;
}

.chat-message.tool {
    align-self: center;
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    max-width: 75%;
    font-style: italic;
}

.chat-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 3px;
}

.chat-content {
    /* white-space: pre-wrap; */
    margin: 0;
    padding: 0;
}
