/* ============================================================
   CONTEXT MENU
   ============================================================ */
.ctxmenu {
    position: fixed;
    z-index: 4500;
    min-width: 180px;
    background: rgba(20, 38, 46, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--byte-border-strong);
    border-radius: var(--byte-r-md);
    box-shadow: var(--byte-shadow-pop);
    padding: 6px;
    font-size: 13px;
    user-select: none;
    animation: ctx-pop 120ms ease-out;
}
@keyframes ctx-pop { from { opacity: 0; transform: scale(0.96) translateY(-2px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.ctxmenu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 7px 10px;
    border-radius: 5px;
    color: var(--byte-text-muted);
    text-align: left;
    transition: background var(--byte-t-fast), color var(--byte-t-fast);
}
.ctxmenu__item i { font-size: 16px; color: var(--byte-text-subtle); }
.ctxmenu__item:hover { background: var(--byte-primary-soft); color: var(--byte-text); }
.ctxmenu__item:hover i { color: var(--byte-primary); }
.ctxmenu__sep { height: 1px; background: var(--byte-border); margin: 4px 0; }

