.float-menu-left {
    position: fixed;
    bottom: 50px;
    left: 10px;
    z-index: 999;
}

.float-item {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.float-item:hover {
    background-color: #2980b9;
}

.float-dark-mode {
    background-color: #333;
}

.float-menu-right {
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 999;
    display: none;
}
#floatButtonContainer {
    display: none;
}
.float-item-right {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}