.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}


.fab-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.fab-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: 0.25s ease;
}

/* Animation active state */
.fab-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}