.chatbox {
  width: 300px;
  min-height: 400px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.chatlogs {
  padding: 10px;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
}

.message {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.bot-message .message {
  background: #d9fdd3;
}

.chat-form {
  display: flex;
  padding: 10px;
}

.chat-input {
  width: 80%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  resize: none;
}

.send-btn {
  width: 20%;
  background: #4caf50;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
}
