/* ========== CONTEXT MENU ========== */
.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    min-width: 240px;
    padding: 8px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: contextMenuSlideIn 0.15s ease-out;
}

@keyframes contextMenuSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.context-menu-header {
    padding: 10px 16px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.context-menu-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.context-menu-item:hover {
    background: #f0f0f0;
}

.context-menu-item.danger {
    color: #dc3545;
}

.context-menu-item.danger:hover {
    background: #ffe6e6;
}

.context-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 4px 0;
}

.context-menu-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}