#chatbot-button {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#chatbot-button img {
  width: 40px;
}

#chatbot-container {
  position: fixed;
  z-index: 99999;
  bottom: 70px;
  right: 30px;
  width: 400px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

#chat-header {
  position: relative;
  background-color: #305348;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  text-align: center;
}

#chat-header h4 {
  margin: 0;
  color: white;
}

#chat-header img{
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  margin: 25px;
  cursor: pointer;
}

#chat-messages {
  padding: 20px;
  overflow-y: auto;
  height: 40vh;
  text-align: center;
}

.message {
  padding: 12px;
  border-radius: 5px;
  margin: 10px 0;
}

.bot-message {
  background-color: #e0e0e0;
  text-align: left;
  margin-right: 10%;
}

.user-message {
  background-color: #cfe9ba;
  text-align: right;
  margin-left: 10%;
}

#chat-input {
  padding: 10px;
  border-top: 1px solid #ccc;
}

.option-btn {
  margin: 5px 0;
  border: none;
  border-radius: 5px !important;
  width: 90%;
}

.whatsapp-button {
  margin: 20px 0;
  border: none;
  border-radius: 5px !important;
  width: 60%;
}