
.BtnBuddy-DFB-floating-button {
    position: fixed;
    right: 20px; 
    /* right: -70px; */
    bottom: 100px; /* Start position */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: 0.5s ease-in-out;
}

.BtnBuddy-DFB-floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.BtnBuddy-DFB-floating-button i {
    font-size: 20px;
}

.BtnBuddy-DFB-button-text {
    position: absolute;
    /* right: 60px; */
    right: -70px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    font-size: 14px;

    width: fit-content;
}

.BtnBuddy-DFB-floating-button:hover .BtnBuddy-DFB-button-text {
    opacity: 1;
    visibility: visible;
}

/* Positioning buttons in a vertical stack */
/* .BtnBuddy-DFB-floating-button:nth-child(1) {
    bottom: 150px;
}

.BtnBuddy-DFB-floating-button:nth-child(2) {
    bottom: 210px;
}

.BtnBuddy-DFB-floating-button:nth-child(3) {
    bottom: 270px;
}

.BtnBuddy-DFB-floating-button:nth-child(4) {
    bottom: 330px;
} */


/* .BtnBuddy-DFB-right { right: 20px; bottom: 20px; }
.BtnBuddy-DFB-left { left: 20px; bottom: 20px; }
.BtnBuddy-DFB-top { right: 20px; top: 20px; }
.BtnBuddy-DFB-top-left { left: 20px; top: 20px; } */

.BtnBuddy-DFB-right { right: 20px; bottom: 20px;

    .BtnBuddy-DFB-button-text{
        right: 60px;
    }

}


.BtnBuddy-DFB-left { left: 20px; bottom: 20px; 

    .BtnBuddy-DFB-button-text{
        left: 60px;
    }
}


/* .BtnBuddy-DFB-top { right: 20px; top: 20px; } */

.BtnBuddy-DFB-top {
    /* right: 20px;
    top: 90px; */
    left: 50%;
  }


.BtnBuddy-DFB-top-left { left: 20px; top: 20px; }



.BtnBuddy-DFB-floating-button :hover {
    /* background-color: #000; */
    transform: translate(2px, 0px);
    transition: 0.5s ease-in-out;
}