/* Custom tooltip positioning for Diet Baba chatbot */
[class*="flowise-chatbot-tooltip"] {
  left: auto !important;
  right: 90px !important;
  bottom: 30px !important;
  background-color: #1e8449 !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important;
  width: auto !important;
  white-space: nowrap !important;
}

/* Hide the default tooltip arrow */
[class*="flowise-chatbot-tooltip"]::after {
  display: none !important;
}

/* Add custom tooltip arrow on the right side */
[class*="flowise-chatbot-tooltip"]::before {
  content: '';
  position: absolute !important;
  right: -10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border-width: 10px 0 10px 10px !important;
  border-style: solid !important;
  border-color: transparent transparent transparent #1e8449 !important;
}
