div.chatbot-beta-banner p {
margin-bottom: 0;
font-size: 16px;
}
.webchat__send-box-text-box__input: focus {
box-shadow: none !important;
}

#chatbot-popup .icon-button {
  position: relative;
}

#chatbot-popup .icon-button::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-size: 14px;
  z-index: 99999;
}

#chatbot-popup .icon-button:hover::after {
  opacity: 1;
}