.SBfloat {
    position: fixed; /* Fixed position ensures the button is always visible */
    bottom: 20px;    /* Distance from the bottom of the screen */
    right: 20px;     /* Distance from the right of the screen */
    background-color: #25d366; /* WhatsApp green color */
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between the icon and text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensures it stays above all other content */
    transition: 0.3s;
}

.SBfloat:hover {
    background-color: #20b558;
    text-decoration: none;
}

.SBmy-float {
    font-size: 18px;
}
