


#faq-chatbot-container {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#faq-chatbot-header {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.1em;
}

#faq-chatbot-messages {
  height: 200px;
  overflow-y: auto;
  background: #f9f9f9;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 4px;
  font-size: 14px;
}

#faq-chatbot-input {
  width: calc(100% - 60px);
  padding: 8px;
  margin-right: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#faq-chatbot-send {
  padding: 8px 12px;
  border: none;
  background-color: #0073aa;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

#faq-chatbot-send:hover {
  background-color: #005a87;
}