.cloud-button {
  width: 50px;
  height: 50px;
  background: url('https://cdn-icons-png.flaticon.com/512/2543/2543339.png') no-repeat center;
  background-size: contain;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  margin-top:50px;
}


/* Icona telefono blu */
.action-buttons a.call img {
  background-color: #007AFF; /* Blu per chiamata */
  border-radius: 50%;
}

/* Icona WhatsApp verde */
.action-buttons a.whatsapp-button img {
   background-color: #25D366; /* Verde WhatsApp */
   border-radius: 50%;
   margin-top: 5px;
   margin-bottom: 10px;
}

.action-buttons {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 30px;
  z-index: 999;
  
}

.action-buttons.show {
  display: flex;
}

.action-buttons a img {
  width: 40px;
  height: 40px;
}

