.whatsapp-button-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  align-items: center;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white !important;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 60px;
  justify-content: center;
  width: 60px;
  transition: transform 0.2s;
}

.whatsapp-button:hover {
  background-color: #20b858;
  transform: scale(1.1);
}

.whatsapp-options {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 200px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  z-index: 1000;
}

.whatsapp-options li {
  padding: 8px 12px;
}

.whatsapp-options li a {
  text-align: center;
  text-decoration: none;
  color: #008f35;
  font-size: 14px;
}

.whatsapp-options li a:hover {
  color: #20b858;
  transform: scale(1.1);
}
