/* Draggable WhatsApp Button Styles */
.wizup-draggable-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: rgb(24, 173, 80, 80%);
  background-image: url("../images/WhatsApp.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 9999;
  transition: box-shadow 0.2s, background 0.2s;
}
.wizup-draggable-whatsapp-btn:active {
  cursor: grabbing;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.wizup-draggable-whatsapp-btn:hover {
  background-color: rgb(37, 211, 102);
}
.wizup-draggable-whatsapp-btn .wizup-icon {
  width: 28px;
  height: 28px;
  margin: 0;
}
