

.chat-prompt-container {
    background-color: #f5f5f5; 
    padding: 20px 30px;
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    max-width: 100%; 
    margin: 20px 0; 
    font-family: sans-serif; 
    box-sizing: border-box;
}


.avatar-wrapper {
    margin-right: 15px; 
    flex-shrink: 0; 
}


.avatar {
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover; 
    display: block;
}


.message-content {
    font-size: 16px;
    line-height: 1.5;
    color: #333; 
    flex-grow: 1; 
    min-width: 0; 
}


.message-content a {
    color: #0f403f; 
    text-decoration: underline; 
    white-space: nowrap; 
}


@media (max-width: 600px) {
    .chat-prompt-container {
        padding: 10px 15px;
    }
    .avatar {
        width: 50px; 
        height: 50px;
    }
    .message-content {
        font-size: 14px; 
    }
}
