/* Styling for the entire button container */
.whatsapp-btn {
  position: fixed; /* Ensures the button stays put when scrolling */
  bottom: 30px; /* Distance from the bottom of the viewport */
  right: 30px; /* Distance from the right of the viewport */

  /* Button appearance */
  display: flex;
  align-items: center;
  background-color: #fff; /* White background */
  color: #1a1a1a; /* Dark text color */
  padding: 10px 18px;
  border-radius: 50px; /* Highly rounded corners for pill shape */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow */
  text-decoration: none; /* Remove underline from the <a> tag */
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  z-index: 1000; /* Ensures it stays on top of other content */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Styling for the WhatsApp icon */
.whatsapp-icon {
  font-size: 24px;
  color: #25d366; /* Official WhatsApp green */
  background-color: #fff; /* White background inside the icon circle */
  border-radius: 50%; /* Make it a perfect circle */
  padding: 6px;
  margin-right: 10px;
  box-shadow: 0 0 0 1px #ccc; /* Light border/ring */
}

/* Styling for the text label */
.button-text {
  white-space: nowrap; /* Prevent the text from wrapping */
}
