.chatbot-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1100;
}


.chatbot-speech-bubble {
  background: rgba(233, 233, 233, 0.85);
  color: #333;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.chatbot-wrapper:hover .chatbot-speech-bubble {
  opacity: 1;
  visibility: visible;
}

.chatbot-toggle-icon {
  background-color: #fff;
  border: none;
  padding: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.chatbot-toggle-icon img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chatbot-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #c62828;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}
