.whatsapp-alert {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.whatsapp-bubble {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-bubble img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.whatsapp-bubble span {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.whatsapp-bubble:hover {
  background: #1ebe57;
  transform: scale(1.05);
}
