/* Container for the button */
.whatsapp-float {
  /* Make it float */
  position: fixed;
  /* Position it in the bottom right corner */
  bottom: 5.5rem;
  right: 1.5rem;
  /* Ensure it stays on top of other elements */
  z-index: 1000;

  /* Styling */
  background-color: #25d366;
  /* WhatsApp Green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Makes it a circle */
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  /* Subtle shadow */
  transition: background-color 0.3s;

  /* Flexbox to center the content (icon/image) */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: Hover effect */
.whatsapp-float:hover {
  background-color: #128c7e;
}

/* Style for the Font Awesome icon */
.whatsapp-float i {
  font-size: 30px;
  /* Adjust the icon size */
  color: white;
}

/* Style for the image inside */
.whatsapp-icon {
  width: 35px;
  /* Adjust size as needed */
  height: 35px;
}

/* Optional: Media query for smaller screens (e.g., to make it smaller) */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

/* Style for the Font Awesome icon */
.whatsapp-float i {
  font-size: 30px;
  /* Adjust the icon size */
  color: white;
}
