.context-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99998;
}

.context-menu-popup {
    position: fixed;
    z-index: 99999;
    background: white;
    border: 1px solid #ccc;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 200px;
    border-radius: 6px;
    max-height: 70vh;
    overflow-y: auto;
}

.context-menu-item {
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: background 0.15s;
}

.context-menu-item:hover {
    background: #f5f5f5;
}

.context-menu-icon {
    margin-right: 12px;
    font-size: 1.25rem;
    vertical-align: middle;
    display: flex;
    align-items: center;
}
