/* styles.css */

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-float a:hover {
    background-color: transparent; /* Darker shade of WhatsApp green on hover */
}
