The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/Core/Navigation/SidebarView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 50→ return 0 51→ } 52→ } 53→ 54→ private var bottomStatusBar: some View { 55→ VStack(spacing: 4) { 56→ Divider() 57→ 58→ // Terminal nodes indicator 59→ if !tracker.activeProcesses.isEmpty { 60→ HStack(spacing: 6) { 61→ TerminalPulse() 62→ Text("\(tracker.activeProcesses.count) Terminal\(tracker.activeProcesses.count > 1 ? "s" : "") Active") 63→ .font(.caption.bold()) 64→ .foregroundStyle(.orange) 65→ Spacer() 66→ Text(tracker.sessionDuration) 67→ .font(.caption2.monospacedDigit()) 68→ .foregroundStyle(.tertiary) 69→ } 70→ .padding(.horizontal) 71→ .padding(.vertical, 4) 72→ .background(Color.orange.opacity(0.1)) 73→ .cornerRadius(6) 74→ .padding(.horizontal, 8) 75→ .padding(.top, 4) 76→ } 77→ 78→ HStack { 79→ if let summary = appState.roiSummary { 80→ VStack(alignment: .leading, spacing: 2) { 81→ Text("Today's ROI") 82→ .font(.caption2) 83→ .foregroundStyle(.secondary) 84→ Text(String(format: "%.0f%%", summary.roiPercent)) 85→ .font(.headline) 86→ .foregroundStyle(summary.roiPercent >= 100 ? .green : .orange) 87→ } 88→ 89→ Spacer() 90→ 91→ VStack(alignment: .trailing, spacing: 2) { 92→ Text("Cost") 93→ .font(.caption2) 94→ .foregroundStyle(.secondary) 95→ Text(String(format: "$%.2f", summary.totalCost)) 96→ .font(.headline.monospacedDigit()) 97→ } 98→ } else { 99→ Text("Loading...") 100→ .font(.caption) 101→ .foregroundStyle(.secondary) 102→ } 103→ } 104→ .padding(.horizontal) 105→ .padding(.bottom, 8) 106→ } 107→ .background(Color(nsColor: .windowBackgroundColor)) 108→ } 109→} 110→ 111→struct ConnectionStatusView: View { 112→ @EnvironmentObject var appState: AppState