  .fab-container {
        position: relative;
    }

    .fab-main-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #19a9d5;
        border: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        z-index: 10;
    }
    
    .fab-main-button:hover {
        transform: scale(1.05);
    }

    /* استایل پنل یکپارچه منو */
    .fab-menu {
        direction: ltr;
        position: absolute;
        bottom: 100%;
        left: -66%;
        transform: translateX(-50%) translateY(10px); /* شروع انیمیشن از کمی پایین‌تر */
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        padding: 5px;
        width: 165px; /* عرض پنل */
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        margin-bottom: 15px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* انیمیشن نرم */
    }

    /* استایل هر گزینه در منو */
    .fab-menu-item {
        display: flex;
        align-items: center;
        flex-direction: row-reverse; /* آیکون در سمت راست، متن در سمت چپ */
        justify-content: flex-start;
        padding: 10px 12px;
        color: #333;
        text-decoration: none;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }

    .fab-menu-item:hover {
        background-color: #f5f5f5;
        color: #19a9d5;
    }

    .fab-menu-item span {
        margin-right: 10px; /* فاصله بین آیکون و متن */
    }

    /* حالت باز شده */
    .fab-container.open .fab-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .fab-container.open .fab-main-button {
        transform: rotate(45deg);
        background-color: #e74c3c; /* تغییر رنگ دکمه اصلی در حالت باز */
    }