.angie-whatsapp-float-c0396025 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: pulse-c0396025 2s infinite; /* Added pulse animation */
}

.angie-whatsapp-float-c0396025:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    animation: none; /* Stop pulsing on hover */
}

.whatsapp-icon-c0396025 {
    width: 32px;
    height: 32px;
    color: #ffffff; /* Use color for stroke */
}

@keyframes pulse-c0396025 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
    .angie-whatsapp-float-c0396025 {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 20px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .whatsapp-icon-c0396025 {
        width: 28px;
        height: 28px;
    }
}