/* Main WhatsApp button */
#whatsappBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px; /* space between image and text */
  z-index: 1000;
}

/* WhatsApp logo inside button */
#whatsappBtn img {
  width: 280px;
  height: 100px;
}

/* Dialog container */
#dialog {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 70px;
  right: 20px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* WhatsApp buttons inside dialog */
.wa-button {
  display: block;
  background-color: #25d366;
  color: white;
  border: none;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}
