/* Agents & Workspaces Sidebar + Vibe Canvas Styles */ /* ============================================ VIBE CONTAINER ============================================ */ .vibe-container { display: flex; flex-direction: column; height: 100%; background: #fff; font-family: 'Fira Code', monospace; } /* ============================================ PIPELINE TABS ============================================ */ .vibe-pipeline { display: flex; background: #f8f8f8; border-bottom: 1px solid #f0f1f2; } .vibe-pipeline-tab { flex: 1; height: 34px; border: none; border-right: 1px solid #f0f1f2; background: transparent; font-family: 'Fira Code', monospace; font-size: 11px; font-weight: 600; color: #888; cursor: pointer; transition: all 0.15s; } .vibe-pipeline-tab:last-child { border-right: none; } .vibe-pipeline-tab:hover { background: #fff; color: #3b3b3b; } .vibe-pipeline-tab.active { background: #84d669; color: #fff; } /* ============================================ VIBE BODY (Canvas + Sidebar) ============================================ */ .vibe-body { flex: 1; display: flex; overflow: hidden; } /* ============================================ CANVAS AREA ============================================ */ .vibe-canvas { flex: 1; overflow-y: auto; display: flex; flex-direction: column; } .vibe-canvas-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 40px; text-align: center; } .vibe-canvas-icon { font-size: 48px; } .vibe-canvas-empty h3 { margin: 0; font-size: 20px; font-weight: 700; color: #3b3b3b; } .vibe-canvas-empty p { margin: 0; font-size: 14px; color: #888; max-width: 400px; } .vibe-canvas-prompt { display: flex; gap: 8px; margin-top: 12px; width: 100%; max-width: 500px; } .vibe-prompt-input { flex: 1; padding: 10px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-family: 'Fira Code', monospace; font-size: 13px; color: #3b3b3b; outline: none; transition: border-color 0.2s; } .vibe-prompt-input:focus { border-color: #84d669; box-shadow: 0 0 0 3px rgba(132, 214, 105, 0.15); } .vibe-prompt-input::placeholder { color: #bbb; } .vibe-prompt-btn { padding: 10px 24px; border: none; border-radius: 8px; background: #84d669; color: #fff; font-family: 'Fira Code', monospace; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.15s; } .vibe-prompt-btn:hover { background: #72c458; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(132, 214, 105, 0.3); } .vibe-prompt-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; } /* Steps */ .vibe-steps { padding: 16px; } /* Preview */ .vibe-preview { flex: 1; display: flex; flex-direction: column; border-top: 1px solid #f0f1f2; } .vibe-preview-header { display: flex; align-items: center; gap: 8px; padding: 6px 12px; background: #f8f8f8; border-bottom: 1px solid #f0f1f2; font-family: 'Fira Code', monospace; font-size: 11px; font-weight: 600; color: #3b3b3b; } .vibe-preview-url { flex: 1; padding: 3px 10px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; font-family: 'Fira Code', monospace; font-size: 11px; color: #666; } .vibe-preview-content { flex: 1; } .vibe-preview-content iframe { width: 100%; height: 100%; border: none; } /* ============================================ AGENTS & WORKSPACES SIDEBAR ============================================ */ .agents-sidebar { width: 260px; min-width: 260px; background: #f8f8f8; border-left: 1px solid #f0f1f2; overflow-y: auto; transition: width 0.25s, min-width 0.25s; } .agents-sidebar.collapsed { width: 0; min-width: 0; overflow: hidden; } /* Section */ .as-section { border-bottom: 1px solid #f0f1f2; } .as-section-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px 8px 14px; } .as-section-header h3 { margin: 0; font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; } .as-collapse-btn { width: 20px; height: 20px; border: none; background: transparent; color: #888; cursor: pointer; font-size: 10px; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: all 0.15s; } .as-collapse-btn:hover { background: #e0e0e0; color: #3b3b3b; } /* ============================================ AGENT CARDS ============================================ */ .as-agent-list { padding: 0 8px; } .as-agent-card { background: #fff; border: 1px solid #f0f1f2; border-radius: 8px; padding: 10px 12px; margin-bottom: 6px; cursor: grab; transition: all 0.15s; } .as-agent-card:hover { border-color: #84d669; box-shadow: 0 2px 8px rgba(132, 214, 105, 0.1); } .as-agent-card.dragging { opacity: 0.5; transform: scale(0.95); } .as-agent-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; } .as-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; } .as-status-dot.green { background: #84d669; } .as-status-dot.yellow { background: #f59e0b; } .as-status-dot.red { background: #ef4444; } .as-status-dot.gray { background: #ccc; } .as-agent-name { flex: 1; font-size: 12px; font-weight: 600; color: #3b3b3b; } .as-drag-handle { color: #ccc; font-size: 14px; cursor: grab; } .as-agent-body { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; } .as-agent-icons { font-size: 12px; letter-spacing: 2px; } .as-badge { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; } .badge-evolved { background: #84d669; color: #fff; } .badge-bred { background: #f59e0b; color: #fff; } .badge-wild { background: #ef4444; color: #fff; } /* Quota Bar */ .as-agent-bar { height: 3px; background: #f0f1f2; border-radius: 2px; overflow: hidden; } .as-bar-fill { height: 100%; background: #84d669; border-radius: 2px; transition: width 0.3s; } .as-bar-fill.bred { background: #f59e0b; } .as-bar-fill.wild { background: #ef4444; } /* Create Agent Button */ .as-create-btn { width: calc(100% - 16px); margin: 8px 8px; padding: 8px; border: 2px dashed #e0e0e0; border-radius: 8px; background: transparent; font-family: 'Fira Code', monospace; font-size: 11px; font-weight: 500; color: #888; cursor: pointer; transition: all 0.15s; } .as-create-btn:hover { border-color: #84d669; color: #84d669; background: rgba(132, 214, 105, 0.05); } /* ============================================ WORKSPACES ============================================ */ .as-workspace-list { padding: 0 8px 8px 8px; } .as-workspace-item { margin-bottom: 4px; } .as-workspace-toggle { display: flex; align-items: center; gap: 6px; width: 100%; padding: 8px 10px; border: none; border-radius: 6px; background: transparent; font-family: 'Fira Code', monospace; font-size: 12px; font-weight: 500; color: #3b3b3b; cursor: pointer; transition: background 0.15s; text-align: left; } .as-workspace-toggle:hover { background: #fff; } .as-workspace-arrow { font-size: 8px; color: #888; width: 8px; transition: transform 0.15s; } .as-workspace-count { margin-left: auto; font-size: 10px; background: #e0e0e0; color: #666; padding: 1px 6px; border-radius: 8px; } .as-workspace-body { padding: 4px 0 4px 20px; } .as-workspace-agent { padding: 4px 10px; font-size: 11px; color: #666; border-left: 2px solid #f0f1f2; } .as-workspace-dropzone { margin-top: 4px; padding: 10px; border: 2px dashed #e0e0e0; border-radius: 6px; text-align: center; font-size: 11px; color: #ccc; transition: all 0.2s; } .as-workspace-dropzone.drag-over { border-color: #84d669; background: rgba(132, 214, 105, 0.05); color: #84d669; }