/* WhatsApp Floating Button CSS */
#whatsapp-button {
    position: fixed;
    bottom: 30px; /* Adjust distance from the bottom */
    right: 20px;  /* Adjust distance from the right (or use 'left: 20px;' to place it on the left) */
    z-index: 9999; /* Ensures the button appears above other content */
}

#whatsapp-button a img {
    width: 100px; /* Adjust the icon size as needed */
    height: auto;
    /* Optional: add some shadow for better visibility */
    box-shadow: 2px 2px 3px #1b0c46; 
    border-radius: 60%; /* Optional: for a circular button */
}
