.fsb-floating-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fsb-floating-buttons.fsb-left {
    left: 30px;
}

.fsb-floating-buttons.fsb-right {
    right: 30px;
}

.fsb-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.fsb-button:hover {
    transform: translateY(-5px);
}

.fsb-button i {
    font-size: 24px;
}

.fsb-button .fsb-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fsb-button .fsb-tooltip.fsb-right {
    right: 70px;
}

.fsb-button .fsb-tooltip.fsb-left {
    left: 70px;
}

.fsb-button .fsb-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
}

.fsb-button .fsb-tooltip.fsb-right::after {
    left: 100%;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.fsb-button .fsb-tooltip.fsb-left::after {
    right: 100%;
    border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}

.fsb-button:hover .fsb-tooltip {
    opacity: 1;
    visibility: visible;
}

.fsb-instagram {
    background-color: #E1306C;
}

.fsb-telegram {
    background-color: #0088cc;
}

.fsb-whatsapp {
    background-color: #25D366;
}

.fsb-facebook {
    background-color: #3b5998;
}

.fsb-youtube {
    background-color: #FF0000;
}

@media (max-width: 768px) {
    .fsb-floating-buttons {
        bottom: 20px;
    }
    
    .fsb-floating-buttons.fsb-left {
        left: 15px;
    }
    
    .fsb-floating-buttons.fsb-right {
        right: 15px;
    }
    
    .fsb-button {
        width: 50px;
        height: 50px;
    }
    
    .fsb-button i {
        font-size: 20px;
    }
}