.chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f9df30;
  color: black;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  z-index: 1000;
}

.chatbot-window {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  height: 300px;
  max-height: 400px;
  background: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.chatbot-header {
  background: #f9df30;
  color: black;
  padding: 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
}

.chatbot-close {
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #000000;
}

.chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  color: black;
}

.chatbot-input button {
  border: none;
  background: white;
  color: black;
  padding: 10px;
  cursor: pointer;
}

.chatbot-message {
  margin-bottom: 10px;
}

.chatbot-message.user {
  text-align: right;
}

.chatbot-message.bot {
  text-align: left;
}
