.wa-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
}

.wa-bubble {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-family: sans-serif;
}

.wa-bubble:hover {
  background-color: #1ebd5b;
  transform: scale(1.05);
}

.wa-bubble img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.wa-text {
  font-size: 14px;
  white-space: nowrap;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}