.chatbot-btn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 9999;
  border: none;
  background-image: url("../images/xatbot_llarg.png");
  background-color: transparent;
  width: 143px;
  height: 31px;
}

.chatbot-btn.short {
  background-image: url("../images/xatbot_curt.png");
  width: 56px;
  height: 31px;
}

/* Message bubble (often called a "Toast" or "Snackbar") */

#floating-toast-container {
  position: fixed;
  bottom: 60px;
  right: 95px;
  z-index: 9999;
  font-family: sans-serif;
  max-width: 300px;
  display:none;
}

.toast-message {
  background-color: #fff;
  color: #333;
  padding: 10px;
  padding-right: 20px;
  border-radius: 15px 15px 0 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 12px;
  line-height: 1.4;
  animation: slideInRight 0.5s ease-out;
}

.toast-close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

.toast-close:hover {
  color: #000;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}