/* Mikoshi Nexus - Dark Theme with Gold Accents */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #e5e5e5;
    --text-secondary: #a3a3a3;
    --text-dim: #737373;
    --accent-gold: #f59e0b;
    --accent-gold-dim: #d97706;
    --border: #1a1a1a;
    --border-light: #2a2a2a;
    --success: #10b981;
    --error: #ef4444;
    --radius: 12px;
    --sidebar-width: 240px;
    --sidebar-collapsed: 72px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.hidden { display: none !important; }

/* Auth Container */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-primary);
}

.auth-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.auth-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: block;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form input {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--accent-gold-dim);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.auth-switch {
    text-align: center;
    color: var(--text-dim);
    margin-top: 1rem;
    font-size: 0.875rem;
}

.auth-switch a {
    color: var(--accent-gold);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
    padding: 0.875rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* App Container */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed);
}

.sidebar.collapsed .nav-label,
.sidebar.collapsed .sidebar-logo {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s;
}

.sidebar-toggle {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.sidebar-toggle:hover {
    color: var(--text-primary);
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-primary);
    background: rgba(245, 158, 11, 0.05);
}

.nav-item.active::before {
    opacity: 1;
}

.nav-icon {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.nav-icon-img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-label {
    white-space: nowrap;
    transition: opacity 0.3s;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed + .main-content {
    margin-left: var(--sidebar-collapsed);
}

/* Top Bar */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.search-container {
    flex: 1;
    max-width: 600px;
}

.search-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.625rem 1rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: var(--text-primary);
}

.miko-counter {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.miko-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.miko-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-menu {
    position: relative;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
}

.profile-avatar:hover {
    border-color: var(--accent-gold);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.profile-info strong {
    color: var(--text-primary);
}

.profile-info span {
    color: var(--text-dim);
    font-size: 0.875rem;
}

.profile-dropdown hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0.75rem 0;
}

.profile-dropdown a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.profile-dropdown a:hover {
    color: var(--text-primary);
    background: rgba(245, 158, 11, 0.05);
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Cards */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.2s;
}

.card:hover {
    border-color: var(--border-light);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-subtitle {
    color: var(--text-dim);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-dim {
    background: rgba(115, 115, 115, 0.1);
    color: var(--text-dim);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: var(--sidebar-collapsed);
    }
    
    .sidebar .nav-label,
    .sidebar .sidebar-logo {
        opacity: 0;
        width: 0;
    }
    
    .main-content {
        margin-left: var(--sidebar-collapsed);
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .top-bar {
        padding: 1rem;
    }
    
    .page-content {
        padding: 1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-light);
}

/* === Terminal Styles === */
.terminal-wrapper {
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.terminal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.terminal-actions {
    display: flex;
    gap: 0.5rem;
}

.terminal-container {
    flex: 1;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.terminal-welcome {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.terminal-ascii {
    font-size: 10px;
    line-height: 1.2;
    color: #f59e0b;
}

.terminal-version {
    color: #737373;
    font-size: 12px;
    margin-top: 0.5rem;
}

.terminal-prompt {
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.terminal-input-line {
    color: #e5e5e5;
}

.terminal-result {
    color: #10b981;
}

.terminal-number {
    color: var(--accent-gold);
    font-weight: bold;
}

.terminal-var {
    color: #06b6d4;
}

.terminal-function {
    color: #8b5cf6;
}

.terminal-error {
    color: #ef4444;
}

.terminal-error-icon {
    margin-right: 0.5rem;
}

.terminal-help,
.terminal-examples {
    color: #a3a3a3;
    font-size: 13px;
    white-space: pre-wrap;
}

.terminal-input-wrapper {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
}

/* === Orchestrator Styles === */
.orchestrator-wrapper {
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.orchestrator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.orchestrator-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.orchestrator-actions {
    display: flex;
    gap: 0.5rem;
}

.orchestrator-container {
    flex: 1;
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 1rem;
    min-height: 0;
}

.orchestrator-toolbox {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow-y: auto;
}

.orchestrator-toolbox h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.toolbox-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toolbox-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.toolbox-block:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.block-icon {
    font-size: 1.25rem;
}

.block-label {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.orchestrator-canvas-wrapper {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.orchestrator-canvas {
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.orchestrator-results {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow-y: auto;
}

.orchestrator-results h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.execution-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.execution-step {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.step-icon {
    font-size: 1.25rem;
}

.step-title {
    flex: 1;
    font-weight: 600;
}

.step-time {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.step-output {
    background: #000;
    border-radius: 6px;
    padding: 0.75rem;
}

.step-output pre {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin: 0;
    overflow-x: auto;
}

/* Templates Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.templates-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.template-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.template-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.template-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.template-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.template-blocks {
    font-size: 1.25rem;
    color: var(--text-dim);
}

/* === Synapse Styles === */
.synapse-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.synapse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.synapse-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.synapse-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-active {
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.synapse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.synapse-product {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.synapse-product:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-badge.status-connecting {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
}

.status-badge.status-offline {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.product-event {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.product-time {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.event-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.event-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.event-item:hover {
    border-color: var(--accent-gold);
}

.event-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.event-from {
    font-weight: 600;
    color: var(--accent-gold);
}

.event-arrow {
    color: var(--text-dim);
}

.event-to {
    font-weight: 600;
    color: #06b6d4;
}

.event-data {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.data-inspector {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow-y: auto;
}

.inspector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
}

.inspector-header h3 {
    font-size: 1.125rem;
}

.inspector-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

.inspector-close:hover {
    color: var(--accent-gold);
}

.inspector-content {
    padding: 1.5rem;
}

.inspector-section {
    margin-bottom: 2rem;
}

.inspector-section h4 {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.inspector-table {
    width: 100%;
    font-size: 0.875rem;
}

.inspector-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.inspector-table td:first-child {
    color: var(--text-dim);
    width: 100px;
}

.inspector-json {
    background: #000;
    border-radius: 6px;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    overflow-x: auto;
}

.inspector-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inspector-event {
    background: var(--bg-tertiary);
    border-radius: 6px;
    padding: 1rem;
}

.inspector-event strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.inspector-event pre {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.empty-state {
    text-align: center;
    color: var(--text-dim);
    padding: 2rem;
}

/* === Dashboard Additions === */
.status-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-icon.status-active {
    background: var(--success);
}

.status-info strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.status-info span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.quick-terminal {
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    font-family: 'Courier New', monospace;
}

.quick-terminal-history {
    min-height: 80px;
    margin-bottom: 0.75rem;
}

.quick-terminal-line {
    font-size: 13px;
    margin-bottom: 0.5rem;
    color: #e5e5e5;
}

.quick-terminal-line .terminal-result {
    color: var(--accent-gold);
    margin-left: 0.5rem;
}

.quick-terminal-input {
    display: flex;
    align-items: center;
}

.quick-terminal-field {
    flex: 1;
    background: transparent;
    border: none;
    color: #e5e5e5;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    outline: none;
}

.pipeline-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pipeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pipeline-info strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.pipeline-time {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.pipeline-status {
    font-size: 1.25rem;
}

.pipeline-status.status-success {
    color: var(--success);
}
