/* Base styling for the floating button */
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50%;
    margin-bottom: -55px;
    right: 30px;
    background-color: #05940b;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s;
}

/* Making the label visible all the time */
.float::before {
    content: 'Join WhatsApp Group';
    position: absolute;
    left: -180px;
    top: 12px;
    font-size: 15px;
    background: #05940b;
    padding: 6px 12px;
    border-radius: 30px;
    color: #ffffff;
    white-space: nowrap;
    opacity: 1; /* Always visible */
    transform: translateX(0); /* No slide-in effect */
    transition: none; /* No transition effect */
}

/* Ensuring the icon text is centered */
.my-float {
    font-family: FontAwesome;
    line-height: 50px; /* Centers text vertically */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        right: 20px;
    }

    .float::before {
        font-size: 13px;
        left: -160px;
    }
}

/* Hover color fix */
.float:hover {
    background-color: #05940b;
}

.float:hover .my-float {
    color: #fff;
}