/* Add styles to your button */
.whatsapp-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c1ffc1; /* Light pastel green color */
  border: 2px solid #ccc; /* Grey border */
  border-radius: 5px;
  text-decoration: none;
  color: #333; /* Text color */
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.whatsapp-button:hover {
  background-color: #a3e6a3; /* Light pastel green color when hovered */
}

/* Remove default link styling */
.whatsapp-button:focus, .whatsapp-button:active {
  text-decoration: none;
  outline: none;
}
