﻿
.help-button {
    position: fixed;
    left: 10px;
    top: 30%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    color: white;
    font-size: 12px;
}

    .help-button:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

.dropdown-menu {
    position: fixed;
    left: 60px;
    top: 30%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 200px;
    padding: 0px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }

.menu-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    font-size: 14px;
}

    .menu-item:hover {
        background-color: #f0f4ff;
    }

    .menu-item:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-item i {
        margin-left: 10px;
        color: #6a11cb;
    }
