/* --- YOUR REQUESTED STYLING --- */
.li-bot-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
  border: 2px solid #0076df;
}

.li-bot-float img {
  width: 80%;
  height: auto;
}

.li-bot-float:hover {
  transform: scale(1.1);
}

.tooltip {
  visibility: hidden;
  position: absolute;
  right: 85px; /* Moved slightly more to the left */
  background-color: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.li-bot-float:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* --- THE CLEAN-UP RULES (Fixes Double Text & Purple Circle) --- */

/* 1. Hide the purple button but keep it clickable behind your bot */
[style*="background-color: rgb(124, 58, 237)"], 
#libot-widget-button {
    opacity: 0 !important;
    z-index: 10000 !important; /* Click layer on top */
}

/* 2. Hide ANY text labels generated by the script to stop the "Double Text" */
[class*="button-label"], 
[class*="widget-text"],
.botpress-webchat-launcher span {
    display: none !important;
}