#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  font-family: Arial;
  z-index: 9999;
}

#chat-header {
  background: #113157;
  color: white;
  padding: 12px;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
}

#chat-body {
  display: none;
  background: white;
  border: 1px solid #ccc;
  height: 380px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 0 0 15px 15px;
}

#chat-input {
  display: flex;
  margin-top: 10px;
}

#chat-input input {
  flex: 1;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

#chat-input button {
  padding: 6px 10px;
  margin-left: 5px;
  background: #ffb81e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.msg {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
}

.bot {
  color: #113157;
}

.user {
  justify-content: flex-end;
}

.bot img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 8px;
}

.msg-text {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 10px;
  max-width: 75%;
}

button.option {
  display: block;
  margin: 5px 0;
  width: 100%;
  padding: 6px;
  background: #ffb81e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}