#is-whatsapp-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

#is-whatsapp-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px;
}

#is-whatsapp-button {
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  min-width: 48px;
  min-height: 48px;
}

#is-whatsapp-button img {
  width: 32px;
  height: 32px;
  border-radius: 25%;
}

#is-whatsapp-text {
  background: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  margin-left: 8px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
