#floating-buttons {
    position: fixed;
    top: 240px;
    right: 5px;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.floating-button {
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 16px;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    text-decoration: none;
    margin: 1px 0;
    color: white!important;
    border-radius: 20px 0 0 20px;
    background-color: #0bbbef;
}

.floating-button i {
    transition: right 0.3s ease-in-out;
}

.floating-button::before {
    content: attr(data-text);
    position: absolute;
    left: 15px;
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s ease-in-out;
}

.floating-button:hover {
    width: 220px!important;
    background-color: #000!important;
}

.floating-button:hover::before {
    opacity: 1;
}

.floating-button:hover i {
    position: absolute;
    right: 15px;
}
.text-white{
    color: white !important;;
}
.btn-success{
    background-color: #28a745!important;
}
.btn-primary{
    background-color: #007bff!important;
}
.btn-warning{
    background-color: #ffc107!important;
}
.btn-danger{
    background-color: #dc3545!important;
}
.btn{
    border-width: 0!important;
}
.me-2{
    margin-right: 0.5rem;
}
.whatsapp{
    background: #25D366;
}
.whatsapp:hover {
    background-color: #128C7E;
}