#context-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #f4f4f0;
    border-left: 1px solid #d0d0d0;
    min-height: 100vh;
}

#context-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #202020;
    background: #ffffff;
    transition: background 0.2s, transform 0.2s;
}

#context-menu a:hover {
    background: #fff0a0;
    transform: translateX(-3px);
}

#context-menu a.selected {
    background: #ffe060;
    font-weight: bold;
}

@media (max-width:900px) {
    #context-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100%;
        z-index: 3000;
        transition: right 0.3s;
        overflow-y: auto;
    }

    #context-menu.open {
        right: 0;
    }
}