.vda-widget {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* BULLE BD */
.speech-bubble {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px 18px;
  font-size: 15px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  white-space: nowrap;
}

/* POINTE */
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent;
}

/* AVATAR */
.avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #3b6cff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fff;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
