.mywhatsappbutton-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color:rgba(37, 211, 101, 0);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px; /* Si usas un icono de fuente */
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.mywhatsappbutton-float:hover {
    background-color: #128C7E; /* Un verde más oscuro al pasar el mouse */
}

/* Si usas una imagen dentro del <a>, puedes necesitar esto: */
/*
.mywhatsappbutton-float img {
    width: 35px;
    height: 35px;
}
*/