.floating-menu {
    position: fixed;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 9999;
    max-width: 300px;
    transition: width 0.3s ease, right 0.3s ease, left 0.3s ease;
}

.floating-menu-right {
    right: 20px;
}

.floating-menu-left {
    left: 20px;
}

.floating-menu .floating-menu-toggle {
    cursor: pointer;
    font-size: 20px;
    color: #333;
    position: absolute;
    top: 10px;
    background: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-menu-right .floating-menu-toggle {
    left: -30px; /* Place toggle on the left side for right-positioned menu */
}

.floating-menu-left .floating-menu-toggle {
    right: -30px; /* Place toggle on the right side for left-positioned menu */
}

.floating-menu.closed .floating-menu-content {
    display: none;
}

.floating-menu-content {
    display: block;
}

