.my-chatbot-container {
    border:1px solid #ccc; 
    padding:10px; 
    max-width:400px; 
    margin:20px auto; 
    font-family:Arial,sans-serif;
    background-color:#fff;
}
.my-chatbot-messages {
    height:200px; 
    overflow:auto; 
    border:1px solid #ddd; 
    padding:5px; 
    margin-bottom:10px; 
    background:#f9f9f9;
}
.my-chatbot-suggested {
    margin-bottom:10px;
}
.my-chatbot-suggested-btn {
    display:inline-block; 
    margin:5px; 
    padding:5px 10px; 
    background:#eee; 
    border:none; 
    cursor:pointer;
}
.my-chatbot-suggested-btn:hover {
    background:#ddd;
}
.my-chatbot-input-container {
    display:flex; 
    gap:5px;
}
.my-chatbot-input {
    flex:1; 
    padding:5px; 
    border:1px solid #ccc;
}
.my-chatbot-send-btn {
    padding:5px 10px; 
    background:#4caf50; 
    color:#fff; 
    border:none; 
    cursor:pointer;
}
.my-chatbot-send-btn:hover {
    background:#45a049;
}
.user-msg {
    background:#def; 
    padding:5px; 
    margin-bottom:5px; 
    border-radius:5px; 
    max-width:90%;
}
.bot-msg {
    background:#eee; 
    padding:5px; 
    margin-bottom:5px; 
    border-radius:5px; 
    max-width:90%;
}