.more-button {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(111, 66, 193, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
    touch-action: none;
}
.more-button:hover {
    background-color: rgba(90, 45, 154, 0.85);
}
.more-button.active {
    background-color: rgba(90, 45, 154, 0.85);
}
.more-button.dragging {
    cursor: grabbing;
    transition: none;
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(111, 66, 193, 0.4);
    background-color: rgba(111, 66, 193, 1);
}
.more-button.draggable {
    background-color: rgba(111, 66, 193, 0.95);
    transform: scale(1.1);
}
.more-menu {
    position: fixed;
    right: 20px;
    bottom: 125px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease, bottom 0.2s ease;
    z-index: 998;
}
.more-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.more-menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}
.more-menu-item:nth-child(1) { animation-delay: 0s; }
.more-menu-item:nth-child(2) { animation-delay: 0.1s; }
.more-menu-item:nth-child(3) { animation-delay: 0.2s; }
.more-menu-item:nth-child(4) { animation-delay: 0.3s; }
.more-menu.show .more-menu-item {
    opacity: 1;
}
.more-menu-btn {
    background-color: #fff;
    color: #6f42c1;
    border: 2px solid #6f42c1;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.more-menu-btn:hover {
    background-color: #6f42c1;
    color: white;
    transform: translateX(-5px);
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
