.mfb-floating-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.mfb-bottom-right { bottom: 0; right: 0; }
.mfb-bottom-left { bottom: 0; left: 0; }
.mfb-top-right { top: 0; right: 0; }
.mfb-top-left { top: 0; left: 0; }

.mfb-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mfb-button i {
    font-size: 24px;
}

.mfb-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.mfb-label {
    position: absolute;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.mfb-bottom-right .mfb-label, .mfb-top-right .mfb-label {
    right: 70px;
}

.mfb-bottom-left .mfb-label, .mfb-top-left .mfb-label {
    left: 70px;
}

.mfb-button:hover .mfb-label {
    opacity: 1;
    visibility: visible;
}

/* Animasyonlar */
@keyframes mfb-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mfb-button {
    animation: mfb-fade-in 0.5s ease-out forwards;
}

@keyframes mfb-fade-in {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
