.my-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 300px;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.chatbot-content{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chat-messages {
    padding: 10px;
    overflow-y: auto;
    flex: 1;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chat-input input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chat-input button {
    margin-left: 5px;
    padding: 8px 15px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.chat-messages .message{
     margin-bottom: 5px;
}