* { margin: 0; padding: 0; box-sizing: border-box; } /* === SVG icon alignment and sizing tweaks === */ /* Align inline SVGs vertically with adjacent text */ .nav-tab > svg, .theme-toggle > svg, .burger-btn > svg, h2 > svg, h3 > svg, .stat-icon > svg, .resource-label > svg, .flash-label > svg, .uptime-label > svg, .latency-label > svg, .member-status > svg, .tab-refresh-btn > svg, .primary-node-info svg, .upload-btn-compact > svg, .deploy-btn > svg, .upload-btn > svg, .terminal-actions svg, .terminal-dock-icon > svg { vertical-align: middle; } /* Monitoring view: slightly larger summary stat icons */ .summary-stats .stat-icon > svg { width: 22px; height: 22px; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: var(--bg-primary); height: 100vh; /* Fixed height instead of min-height */ padding: 1rem; color: var(--text-primary); display: flex; flex-direction: column; overflow: hidden; /* Keep this to prevent body scrolling */ } .container { max-width: none; /* Remove width constraint for full screen coverage */ width: 100%; margin: 0 auto; display: flex; flex-direction: column; flex: 1; padding: 0 2rem; /* Increase horizontal padding for better spacing */ max-height: calc(100vh - 2rem); /* Constrain to viewport height minus body padding */ overflow: hidden; /* Keep this to maintain layout constraints */ } /* Header styles removed - integrated into navigation */ p { font-size: 1.2rem; opacity: 1; margin-bottom: 2rem; } .cluster-section { background: var(--bg-secondary); border-radius: 16px; backdrop-filter: var(--backdrop-blur); box-shadow: var(--shadow-primary); border: 1px solid var(--border-primary); padding: 0.75rem; margin-bottom: 1rem; } .cluster-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } .cluster-header-left { /* Placeholder for future content if needed */ } .primary-node-info { display: flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem; background: rgba(255, 255, 255, 0.05); border-radius: 6px; border: 1px solid var(--border-primary); backdrop-filter: var(--backdrop-blur); } .primary-node-label { font-size: 0.9rem; color: var(--text-tertiary); font-weight: 500; } .primary-node-ip { font-size: 0.9rem; color: var(--accent-primary); font-weight: 600; font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; padding: 0.25rem 0.5rem; background: rgba(74, 222, 128, 0.1); border-radius: 4px; border: 1px solid rgba(74, 222, 128, 0.2); } .primary-node-ip.discovering { color: var(--accent-warning); background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.2); } .primary-node-ip.error { color: var(--accent-error); background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.2); margin: 0; padding: 0.25rem 0.5rem; } .primary-node-ip.selecting { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); animation: pulse 1.5s ease-in-out infinite alternate; } @keyframes pulse { from { opacity: 1; transform: scale(1); } to { opacity: 1; transform: scale(1.05); } } .primary-node-refresh { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; border-radius: 4px; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; } .primary-node-refresh:hover { color: var(--text-secondary); background: rgba(255, 255, 255, 0.1); } .primary-node-refresh:active { transform: scale(0.95); } .firmware-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } .firmware-header-left { /* Placeholder for future content if needed */ } .refresh-btn { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 0.5rem; backdrop-filter: var(--backdrop-blur); margin: 0; } .refresh-btn:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .refresh-btn:active { transform: translateY(0); } .refresh-icon { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; transition: transform 0.3s ease; } .refresh-btn:hover .refresh-icon { transform: rotate(180deg); } .refresh-btn:disabled { opacity: 1; cursor: not-allowed; pointer-events: none; } .refresh-icon.spinning { animation: spin 1s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0.75rem; } /* Responsive grid adjustments */ @media (max-width: 768px) { .members-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.5rem; } } @media (max-width: 480px) { .members-grid { grid-template-columns: 1fr; gap: 0.5rem; } } .member-card { background: var(--bg-tertiary); border: 1px solid var(--border-primary); border-radius: 10px; padding: 1rem; transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease; cursor: pointer; position: relative; margin-bottom: 0.5rem; opacity: 1; z-index: 1; -webkit-tap-highlight-color: transparent; } /* Labels */ .member-labels { display: flex; flex-wrap: wrap; gap: 0.35rem; } .label-chip { display: inline-flex; align-items: center; font-size: 0.8rem; padding: 0.3rem 0.7rem; border-radius: 9999px; background: rgba(30, 58, 138, 0.35); border: 1px solid rgba(59, 130, 246, 0.4); color: #dbeafe; white-space: nowrap; } .member-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-hover); border-radius: 12px; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; } .member-card:hover::before { opacity: 1; } .member-card:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); z-index: 2; } /* Disable hover effects on touch devices to prevent flicker */ @media (hover: none) { .member-card:hover::before { opacity: 0 !important; } .member-card:hover { box-shadow: none !important; z-index: 1 !important; } } .member-card.expanded { border-color: rgba(255, 255, 255, 0.2); box-shadow: var(--shadow-hover); z-index: 5; overflow: visible; /* Allow content to expand */ } .member-card.expanded:hover { } .expand-icon:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-secondary); border-color: rgba(255, 255, 255, 0.2); } .expand-icon:hover svg { } .member-card.expanded .expand-icon { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.25); color: var(--text-secondary); } .member-card.expanded .expand-icon svg { transform: rotate(180deg); } .member-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; } .member-info { flex: 1; } .member-actions { display: flex; align-items: center; gap: 0.4rem; } .member-terminal-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.25rem; border-radius: 6px; border: 1px solid var(--border-primary); background: rgba(255, 255, 255, 0.05); color: var(--text-tertiary); cursor: pointer; transition: all 0.2s ease; } .member-terminal-btn:hover, .member-terminal-btn:focus-visible { background: rgba(255, 255, 255, 0.12); color: var(--text-secondary); border-color: rgba(255, 255, 255, 0.2); } .member-terminal-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; } .expand-icon { color: var(--text-tertiary); cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); margin-left: auto; padding: 0.2rem; border-radius: 6px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-primary); display: flex; align-items: center; justify-content: center; } .expand-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .member-details { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out; opacity: 0; } .member-card.expanded .member-details { max-height: none; /* Remove fixed limit to allow dynamic height */ opacity: 1; overflow: visible; } .detail-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; } .detail-label { opacity: 1; font-weight: 500; } .detail-value { font-family: 'Courier New', monospace; opacity: 1; } /* Monitoring Section Styles */ .monitoring-section { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); } .monitoring-header { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } /* Resource Gauges Styles */ .resource-gauges { display: flex; justify-content: space-around; align-items: center; margin-bottom: 2rem; padding: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; gap: 1rem; width: 100%; box-sizing: border-box; } .gauge-container { display: flex; flex-direction: column; align-items: center; flex: 1; max-width: 130px; min-width: 80px; box-sizing: border-box; } .gauge { position: relative; width: 120px; height: 120px; margin-bottom: 0.3rem; } /* Mobile responsive gauges */ @media (max-width: 768px) { .resource-gauges { justify-content: center; gap: 0.75rem; padding: 0.75rem; } .gauge-container { flex: 0 0 auto; max-width: 90px; min-width: 70px; } .gauge { width: 90px; height: 90px; } } @media (max-width: 480px) { .resource-gauges { justify-content: center; gap: 0.75rem; padding: 0.5rem; } .gauge-container { flex: 0 0 calc(50% - 0.375rem); max-width: calc(50% - 0.375rem); min-width: 0; } .gauge { width: 100px; height: 100px; } } @media (max-width: 360px) { .resource-gauges { justify-content: center; gap: 0.5rem; padding: 0.25rem; } .gauge-container { flex: 0 0 calc(50% - 0.25rem); max-width: calc(50% - 0.25rem); min-width: 0; } .gauge { width: 80px; height: 80px; max-width: 100%; max-height: 100%; } } .gauge-circle { position: relative; width: 100%; height: 100%; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.3s ease; padding: 6px; } .gauge-circle::before { content: ''; position: absolute; top: 6px; left: 6px; width: calc(100% - 12px); height: calc(100% - 12px); border-radius: 50%; background: var(--bg-primary); z-index: 1; } .gauge-circle::after { content: ''; position: absolute; top: 6px; left: 6px; width: calc(100% - 12px); height: calc(100% - 12px); border-radius: 50%; background: conic-gradient( from -90deg, transparent 0deg, transparent calc(var(--percentage) * 3.6deg), var(--bg-primary) calc(var(--percentage) * 3.6deg), var(--bg-primary) 360deg ); z-index: 2; } .gauge-text { position: relative; z-index: 3; text-align: center; color: var(--text-primary); } .gauge-value { font-size: 1.2rem; font-weight: 600; line-height: 1; margin-bottom: 0.1rem; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .gauge-label { font-size: 0.75rem; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 0.1rem; } .gauge-detail { font-size: 0.65rem; opacity: 0.5; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 400; } /* Responsive gauge text sizes */ @media (max-width: 768px) { .gauge-value { font-size: 1rem; } .gauge-label { font-size: 0.7rem; } .gauge-detail { font-size: 0.6rem; } } @media (max-width: 480px) { .gauge-value { font-size: 0.9rem; } .gauge-label { font-size: 0.65rem; } .gauge-detail { font-size: 0.55rem; } } @media (max-width: 360px) { .gauge-value { font-size: 0.8rem; } .gauge-label { font-size: 0.6rem; } .gauge-detail { font-size: 0.5rem; } } /* Dynamic gauge colors based on percentage */ .gauge-empty .gauge-circle { background: rgba(255, 255, 255, 0.1); } .gauge-green .gauge-circle { background: conic-gradient( from -90deg, var(--accent-success) 0deg, var(--accent-success) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) 360deg ); } .gauge-yellow .gauge-circle { background: conic-gradient( from -90deg, var(--accent-warning) 0deg, var(--accent-warning) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) 360deg ); } .gauge-red .gauge-circle { background: conic-gradient( from -90deg, var(--accent-error) 0deg, var(--accent-error) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) 360deg ); } /* Gauge value color based on usage level */ .gauge[data-percentage] .gauge-value { color: var(--text-primary); } /* Hover effects */ .gauge:hover .gauge-circle { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); } .gauge:hover .gauge-value { color: var(--accent-primary); } .api-endpoints { margin-top: 1rem; } .api-endpoints h4 { margin-bottom: 0.5rem; font-size: 0.9rem; opacity: 1; } .endpoint-item { background: var(--bg-tertiary); padding: 0.5rem; border-radius: 6px; margin-bottom: 0.5rem; font-size: 0.8rem; font-family: 'Courier New', monospace; border: 1px solid var(--border-primary); transition: all 0.2s ease; } .endpoint-item:hover { border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); } .loading-details { text-align: center; padding: 1rem; opacity: 1; font-size: 0.9rem; } /* Compact member card layout */ .member-row-1 { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; } .status-hostname-group { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; } .member-row-2 { margin-top: 0.5rem; } .member-hostname { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); flex-shrink: 0; } .member-ip { font-size: 0.85rem; opacity: 1; flex-shrink: 0; } .member-status, .node-status-indicator { display: inline-flex; align-items: center; justify-content: center; width: 1rem; height: 1rem; padding: 0; border-radius: 50%; font-size: 0; /* prevent line-height affecting size */ flex-shrink: 0; } .status-online { background: rgba(76, 175, 80, 0.3); color: var(--accent-success); border: 1px solid rgba(76, 175, 80, 0.5); border-radius: 50%; } .status-offline { background: rgba(244, 67, 54, 0.3); color: #f44336; border: 1px solid rgba(244, 67, 54, 0.5); border-radius: 50%; } .status-inactive { background: rgba(255, 152, 0, 0.3); color: #ff9800; border: 1px solid rgba(255, 152, 0, 0.5); border-radius: 50%; } /* Ensure the inner dot SVG fits nicely */ .member-status > svg, .node-status-indicator > svg { width: 8px; height: 8px; display: block; } .member-latency { font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; background: none; border: none; padding: 0; } .latency-label { color: var(--text-tertiary); font-weight: 500; } .latency-value { color: var(--text-primary); font-weight: 600; } /* Tab Styles */ .tabs-container { margin-top: 1rem; background: rgba(255, 255, 255, 0.03); border-radius: 8px; padding: 0.5rem; } .tabs-header { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.15); margin-bottom: 1rem; gap: 0.5rem; } .tab-button { background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.5rem 1rem; border-radius: 8px 8px 0 0; cursor: pointer; font-size: 0.9rem; transition: all 0.3s ease; border-bottom: none; } .tab-button:hover { background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.95); border-color: rgba(255, 255, 255, 0.25); } .tab-button.active { background: rgba(255, 255, 255, 0.2); color: var(--text-primary); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1); } .tab-content { display: none; } .tab-content.active { display: block; } /* Task Styles */ .task-item { background: var(--bg-tertiary); border: 1px solid var(--border-primary); border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem; } /* Modern Tasks Summary Styles */ .tasks-summary { background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%); border: 1px solid var(--border-secondary); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; backdrop-filter: var(--backdrop-blur); box-shadow: var(--shadow-secondary); transition: all 0.3s ease; position: relative; overflow: hidden; } .tasks-summary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); } .tasks-summary:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); transform: translateY(-1px); } .tasks-summary-left { display: flex; align-items: center; gap: 1.5rem; } .tasks-summary-right { display: flex; align-items: center; gap: 1rem; } .summary-stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.05); border-radius: 8px; border: 1px solid var(--border-primary); transition: all 0.2s ease; min-width: 80px; } .summary-stat:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .summary-stat-value { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); line-height: 1; } .summary-stat-label { font-size: 0.75rem; color: var(--text-tertiary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; } .summary-stat.total .summary-stat-value { color: var(--accent-primary); } .summary-stat.active .summary-stat-value { color: var(--accent-primary); } .summary-stat.stopped .summary-stat-value { color: var(--accent-error); } .summary-stat.disabled .summary-stat-value { color: var(--accent-warning); } .summary-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border-radius: 12px; border: 1px solid var(--border-secondary); margin-right: 1rem; font-size: 1.5rem; } .summary-title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; } .summary-subtitle { font-size: 0.9rem; color: var(--text-tertiary); font-weight: 400; } /* Responsive design for tasks summary */ @media (max-width: 768px) { .tasks-summary { flex-direction: column; gap: 1rem; padding: 0.75rem; text-align: center; } .tasks-summary-left { flex-direction: row; gap: 0.5rem; align-items: center; justify-content: center; } .tasks-summary-right { flex-direction: row; gap: 0.5rem; align-items: center; justify-content: center; flex-wrap: nowrap; } .summary-stat { min-width: 60px; padding: 0.4rem 0.6rem; flex: 0 0 auto; } .summary-stat-value { font-size: 1.1rem; } .summary-stat-label { font-size: 0.65rem; } .summary-icon { width: 36px; height: 36px; font-size: 1.1rem; margin-right: 0.5rem; margin-bottom: 0; } } @media (max-width: 480px) { .tasks-summary { padding: 0.5rem; gap: 0.75rem; } .tasks-summary-left, .tasks-summary-right { gap: 0.25rem; } .summary-stat { min-width: 50px; padding: 0.3rem 0.4rem; flex: 0 0 auto; } .summary-stat-value { font-size: 1rem; } .summary-stat-label { font-size: 0.6rem; } .summary-icon { width: 32px; height: 32px; font-size: 1rem; margin-right: 0.25rem; } } .task-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; } .task-name { font-weight: 600; color: var(--text-primary); } .task-status { font-size: 0.85rem; padding: 0.25rem 0.5rem; border-radius: 4px; font-weight: 500; } .task-status.running { background: rgba(76, 175, 80, 0.2); color: var(--accent-success); border: 1px solid rgba(76, 175, 80, 0.3); } .task-status.stopped { background: rgba(244, 67, 54, 0.2); color: #f44336; border: 1px solid rgba(244, 67, 54, 0.3); } .task-details { display: flex; gap: 1rem; font-size: 0.8rem; opacity: 1; } .task-interval, .task-enabled { background: var(--bg-tertiary); padding: 0.2rem 0.5rem; border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.05); } /* Firmware Upload Styles */ .firmware-upload h4 { margin-bottom: 1rem; color: var(--text-primary); } .upload-area { text-align: center; padding: 2rem; border: 2px dashed rgba(255, 255, 255, 0.2); border-radius: 12px; background: var(--bg-tertiary); } .upload-btn { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 0.5rem; backdrop-filter: var(--backdrop-blur); margin-bottom: 1rem; margin: auto; } .upload-btn:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .upload-btn:active { transform: translateY(0); } .upload-info { font-size: 0.9rem; opacity: 1; color: var(--text-secondary); } /* Upload Status Styles */ #upload-status { margin-top: 1rem; padding: 1rem; border-radius: 8px; border: 1px solid var(--border-primary); } .upload-progress { text-align: center; color: #ffa726; } .upload-success { text-align: center; color: var(--accent-success); background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.2); padding: 0.75rem; border-radius: 6px; } .upload-error { text-align: center; color: #f44336; background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.2); padding: 0.75rem; border-radius: 6px; } .upload-btn:disabled { opacity: 1; cursor: not-allowed; transform: none !important; } .no-tasks { text-align: center; padding: 2rem; opacity: 1; } .loading-tasks { text-align: center; padding: 1rem; opacity: 1; font-style: italic; } .loading { text-align: center; padding: 2rem; opacity: 1; } .error { background: rgba(244, 67, 54, 0.2); border: 1px solid rgba(244, 67, 54, 0.3); color: #ffcdd2; padding: 1rem; border-radius: 8px; margin-top: 1rem; } .empty-state { text-align: center; padding: 2rem; opacity: 1; } .empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; } /* Main Navigation Styles */ .main-navigation { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; background: var(--bg-tertiary); border-radius: 16px; padding: 0.5rem; border: 1px solid var(--border-primary); backdrop-filter: var(--backdrop-blur); } .nav-left { display: flex; gap: 0.25rem; } .nav-right { display: flex; align-items: center; gap: 1rem; } .nav-tab { background: transparent; border: none; color: var(--text-muted); padding: 0.875rem 1.75rem; border-radius: 12px; cursor: pointer; font-size: 0.95rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .nav-tab::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); opacity: 0; transition: opacity 0.3s ease; } .nav-tab:hover { color: var(--text-secondary); transform: translateY(-1px); } .nav-tab:hover::before { opacity: 1; } .nav-tab.active { background: rgba(255, 255, 255, 0.15); color: var(--text-primary); box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); transform: translateY(-1px); } .nav-tab.active::before { opacity: 0; } /* Cluster Status */ .cluster-status { background: linear-gradient(135deg, rgba(0, 255, 0, 0.15) 0%, rgba(0, 255, 0, 0.08) 100%); border: 1px solid rgba(0, 255, 0, 0.25); color: #00ff88; padding: 0.75rem 1.25rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1); transition: all 0.3s ease; } /* Cluster Status States */ .cluster-status-online { background: linear-gradient(135deg, rgba(0, 255, 0, 0.15) 0%, rgba(0, 255, 0, 0.08) 100%); border: 1px solid rgba(0, 255, 0, 0.25); color: #00ff88; box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1); } .cluster-status-offline { background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.08) 100%); border: 1px solid rgba(255, 0, 0, 0.25); color: #ff6b6b; box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1); } .cluster-status-connecting { background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.08) 100%); border: 1px solid rgba(255, 193, 7, 0.25); color: #ffd54f; box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1); } .cluster-status-discovering { background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%); border: 1px solid rgba(33, 150, 243, 0.25); color: #64b5f6; box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1); } .cluster-status-error { background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.08) 100%); border: 1px solid rgba(244, 67, 54, 0.25); color: #ff8a80; box-shadow: 0 2px 8px rgba(244, 67, 54, 0.1); } /* View Content Styles */ .view-content { display: none; opacity: 0; transition: opacity 0.2s ease-in-out; overflow-y: auto; /* Allow vertical scrolling on content */ max-height: 100%; /* Allow content to use available height */ flex: 1; /* Take up available space */ flex-direction: column; /* Stack content vertically */ } .view-content.active { display: flex; opacity: 1; } /* Special handling for cluster and firmware views to ensure proper width */ #cluster-view.active, #firmware-view.active, #monitoring-view.active { display: flex; /* Use flex display for proper layout */ flex-direction: column; /* Stack content vertically */ overflow-y: auto; /* Allow vertical scrolling */ } /* Firmware Section Styles */ .firmware-section { background: var(--bg-secondary); border-radius: 16px; backdrop-filter: var(--backdrop-blur); box-shadow: var(--shadow-primary); border: 1px solid var(--border-primary); padding: 0.75rem; margin-bottom: 1rem; position: relative; overflow: visible; /* Allow content to expand and scroll */ } .firmware-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); } /* Firmware header styles moved to general header section above */ /* Firmware Actions */ .firmware-actions { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1rem; } .action-group { background: var(--bg-tertiary); border-radius: 10px; padding: 1rem; border: 1px solid var(--border-primary); position: relative; overflow: hidden; transition: all 0.2s ease; } .action-group:hover { background: var(--bg-tertiary); border-color: rgba(255, 255, 255, 0.1); box-shadow: none; } .action-group h3 { color: var(--text-primary); margin-bottom: 0.75rem; font-size: 1rem; font-weight: 600; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* Compact Firmware Upload Interface */ .firmware-upload-compact { display: flex; flex-direction: column; gap: 0.75rem; } .compact-upload-row { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: transparent; border: 1px solid var(--border-primary); border-radius: 10px; transition: all 0.2s ease; position: relative; cursor: pointer; } .compact-upload-row::before { content: none; } .compact-upload-row:hover::before { opacity: 0; } .compact-upload-row:hover { background: transparent; border-color: rgba(255, 255, 255, 0.1); box-shadow: none; transform: none; } .file-upload-area { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; min-width: 0; } .file-input-wrapper { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; margin-top: 0.25rem; } .upload-btn-compact { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 0.5rem; backdrop-filter: var(--backdrop-blur); white-space: nowrap; } .upload-btn-compact:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .upload-btn-compact:active { transform: translateY(0); } .file-info { color: var(--text-tertiary); font-size: 0.9rem; font-style: italic; transition: all 0.2s ease; padding: 0.75rem 1.25rem; background: var(--bg-tertiary); border-radius: 6px; border: 1px solid var(--border-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; } .file-info:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); } .file-info.has-file { color: var(--accent-primary); background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.2); font-weight: 500; font-style: normal; } .file-info.has-file:hover { background: rgba(74, 222, 128, 0.15); border-color: rgba(74, 222, 128, 0.3); box-shadow: 0 2px 8px rgba(74, 222, 128, 0.2); } .target-options { display: flex; gap: 0.75rem; justify-content: flex-start; align-items: center; min-height: 36px; } .target-option { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; padding: 0.3rem; border-radius: 6px; transition: all 0.2s ease; background: transparent; border: none; } .target-option:hover { background: transparent; border-color: transparent; box-shadow: none; transform: none; } .target-option input[type="radio"] { display: none; } .radio-custom { width: 14px; height: 14px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 50%; position: relative; background: var(--bg-tertiary); } .target-option input[type="radio"]:checked + .radio-custom { border-color: #667eea; background: #667eea; box-shadow: none; transform: none; } .target-option input[type="radio"]:checked + .radio-custom::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 5px; height: 5px; background: white; border-radius: 50%; } @keyframes radioPop { 0% { transform: translate(-50%, -50%) scale(0); opacity: 0; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } } .target-label { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; } .node-select { background: var(--bg-tertiary); border: 1px solid var(--border-primary); color: var(--text-primary); padding: 0.3rem 0.5rem; border-radius: 6px; font-size: 0.8rem; transition: all 0.2s ease; cursor: pointer; min-width: 120px; font-weight: 500; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); } .node-select:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); transform: translateY(-1px); } .node-select:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2); background: var(--bg-secondary); } /* Style the dropdown options */ .node-select option { background: #1a202c; color: var(--text-primary); padding: 0.75rem 1rem; font-size: 0.9rem; font-weight: 500; border: none; } .node-select option:hover { background: #2d3748; } .node-select option:checked { background: #667eea; color: var(--text-primary); font-weight: 600; } /* Ensure the select field text is always visible */ .node-select:invalid { color: var(--text-secondary); } .node-select:valid { color: var(--text-primary); } /* Style for no-nodes message */ .no-nodes-message { color: #fbbf24 !important; font-size: 0.8rem !important; margin-top: 0.25rem !important; font-style: italic !important; text-align: center; padding: 0.5rem 0.75rem; border-radius: 6px; background: var(--bg-tertiary); border: 1px solid rgba(251, 191, 36, 0.3); transition: all 0.2s ease; } .no-nodes-message:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); } .deploy-btn { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 0.5rem; backdrop-filter: var(--backdrop-blur); min-width: 100px; position: relative; overflow: hidden; white-space: nowrap; } .deploy-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s ease; } .deploy-btn:hover:not(:disabled)::before { left: 100%; } .deploy-btn:hover:not(:disabled) { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .deploy-btn:active:not(:disabled) { transform: translateY(0); } .deploy-btn:disabled { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); color: rgba(255, 255, 255, 0.4); cursor: not-allowed; transform: none; box-shadow: none; } .deploy-btn.loading { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); color: #1f2937; cursor: not-allowed; } /* Responsive design for smaller screens */ @media (max-width: 768px) { .firmware-actions { gap: 0.75rem; } .action-group { padding: 0.75rem; } .compact-upload-row { flex-direction: column; gap: 0.75rem; padding: 0.75rem; } .file-upload-area { flex-direction: column; align-items: stretch; gap: 0.5rem; } .file-input-wrapper { flex-direction: column; align-items: stretch; gap: 0.5rem; } .upload-btn-compact { width: 100%; padding: 0.5rem 0.75rem; font-size: 0.85rem; } .target-options { justify-content: flex-start; gap: 0.75rem; flex-wrap: wrap; align-items: center; min-height: 40px; } .target-option { padding: 0.2rem 0.4rem; border-radius: 6px; display: flex; align-items: center; gap: 0.3rem; } .target-label { font-size: 0.8rem; white-space: nowrap; } .specific-node-option { flex-direction: row; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-start; } .specific-node-option .node-select { margin-left: 0; min-width: auto; width: auto; padding: 0.4rem 0.6rem; font-size: 0.8rem; flex: 1; min-width: 120px; max-width: 200px; } .deploy-btn { padding: 0.5rem 1rem; font-size: 0.85rem; min-width: 120px; } .file-info { text-align: center; padding: 0.5rem; font-size: 0.85rem; } .radio-custom { width: 16px; height: 16px; } } /* Extra small screens */ @media (max-width: 480px) { .action-group { padding: 0.5rem; } .compact-upload-row { padding: 0.5rem; gap: 0.5rem; } .upload-btn-compact { padding: 0.5rem 0.75rem; font-size: 0.8rem; } .deploy-btn { padding: 0.5rem 0.75rem; font-size: 0.8rem; min-width: 100px; } .file-info { padding: 0.4rem; font-size: 0.8rem; } .target-label { font-size: 0.8rem; } .radio-custom { width: 14px; height: 14px; } .node-select { padding: 0.3rem 0.5rem; font-size: 0.8rem; min-width: 100px; } .target-options { gap: 0.75rem; } .target-option { padding: 0.2rem 0.4rem; } } /* Firmware upload progress and results styling */ .firmware-upload-progress, .firmware-upload-results { background: var(--bg-tertiary); border-radius: 16px; backdrop-filter: var(--backdrop-blur); box-shadow: var(--shadow-primary); border: 1px solid var(--border-primary); padding: 1.5rem; margin-top: 1rem; transition: all 0.2s ease; } .firmware-upload-progress:hover, .firmware-upload-results:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); } .progress-header, .results-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } .progress-header h3, .results-header h3 { margin: 0 0 0.5rem 0; color: var(--text-primary); font-size: 1.2rem; font-weight: 600; } .progress-header { position: relative; } .progress-refresh-btn { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; backdrop-filter: var(--backdrop-blur); } .progress-refresh-btn:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .progress-refresh-btn:active { transform: translateY(0); } .progress-info, .results-summary { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-tertiary); } .progress-info span, .results-summary span { padding: 0.25rem 0.5rem; background: var(--bg-tertiary); border-radius: 6px; border: 1px solid var(--border-primary); transition: all 0.2s ease; } .progress-info span:hover, .results-summary span:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); } .overall-progress { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; } .progress-bar-container { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; } .progress-bar { height: 100%; background: #fbbf24; border-radius: 4px; transition: width 0.3s ease, background-color 0.3s ease; width: 0%; } .progress-text { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; min-width: 80px; text-align: right; } .progress-summary { margin-top: 0.75rem; padding: 0.5rem 0.75rem; background: var(--bg-tertiary); border-radius: 10px; border: 1px solid var(--border-primary); transition: all 0.2s ease; } .progress-summary:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .progress-summary span { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; } .success-count { color: #4ade80 !important; border-color: rgba(74, 222, 128, 0.3) !important; } .failure-count { color: #f87171 !important; border-color: rgba(248, 113, 113, 0.3) !important; } .total-count { color: #60a5fa !important; border-color: rgba(96, 165, 250, 0.3) !important; } .progress-list, .results-list { display: flex; flex-direction: column; gap: 0.75rem; } .progress-item, .result-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: var(--bg-tertiary); border-radius: 10px; border: 1px solid var(--border-primary); transition: all 0.2s ease; position: relative; cursor: pointer; } .progress-item::before, .result-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-hover); border-radius: 12px; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; } .progress-item:hover::before, .result-item:hover::before { opacity: 1; } .progress-item:hover, .result-item:hover { background: rgba(0, 0, 0, 0.25); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); transform: translateY(-2px); } .progress-node-info, .result-node-info { display: flex; flex-direction: column; gap: 0.25rem; } .node-name { font-weight: 600; color: var(--text-primary); } .node-ip { font-size: 0.85rem; color: var(--text-muted); font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; } .progress-status, .result-status { font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; min-width: 100px; text-align: center; } .progress-time { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); min-width: 120px; text-align: right; } .progress-status.success, .result-status.success { background: rgba(74, 222, 128, 0.1); color: var(--accent-primary); border: 1px solid rgba(74, 222, 128, 0.2); } .progress-status.error, .result-status.error { background: rgba(248, 113, 113, 0.1); color: var(--accent-error); border: 1px solid rgba(248, 113, 113, 0.2); } .progress-status.uploading { background: rgba(251, 191, 36, 0.1); color: var(--accent-warning); border: 1px solid rgba(251, 191, 36, 0.2); animation: pulse 1.5s ease-in-out infinite alternate; } .result-details { font-size: 0.85rem; color: var(--text-tertiary); max-width: 300px; text-align: right; } .results-actions { display: flex; gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.08); } .clear-btn, .refresh-btn { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.75rem 1.25rem; border-radius: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .clear-btn:hover, .refresh-btn:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .clear-btn:active, .refresh-btn:active { transform: translateY(0); } /* Responsive design for progress and results */ @media (max-width: 768px) { .progress-item, .result-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; } .progress-status, .result-status { align-self: flex-end; } .result-details { text-align: left; max-width: none; } .progress-info, .results-summary { flex-direction: column; gap: 0.5rem; } .results-actions { flex-direction: column; } } /* Loading and state transitions */ .loading, .error, .empty-state { opacity: 0; animation: fadeIn 0.3s ease-in-out forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } /* Smooth expand/collapse animations */ .member-details { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out; opacity: 0; } .member-card.expanded .member-details { opacity: 1; } /* Expand icon rotation */ .expand-icon svg { transition: transform 0.2s ease-in-out; } .member-card.expanded .expand-icon svg { transform: rotate(180deg); } /* Navigation tab transitions */ .nav-tab { transition: all 0.2s ease; } .nav-tab:hover { transform: translateY(-1px); } .nav-tab.active { transform: translateY(0); } .specific-node-option { gap: 0.5rem; align-items: center; } .specific-node-option .node-select { margin-left: 0.5rem; display: none; } /* Capabilities Styles */ .endpoints-list { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; } /* Custom dropdown wrapper and arrow for endpoint selector */ .endpoint-selector { display: flex; align-items: center; gap: 0.5rem; } #endpoint-select { padding-right: 2rem; background-image: url('data:image/svg+xml;utf8,'); background-repeat: no-repeat; background-position: right 0.6rem center; background-size: 12px 12px; } .endpoint-item { background: var(--bg-tertiary); border: 1px solid var(--border-primary); border-radius: 8px; padding: 0.75rem; } .endpoint-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; } .endpoint-method { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; padding: 0.15rem 0.5rem; border-radius: 4px; border: 1px solid var(--border-hover); background: rgba(255, 255, 255, 0.08); color: var(--text-secondary); } .endpoint-uri { font-family: 'Courier New', monospace; font-size: 0.85rem; opacity: 1; flex: 1; } .endpoint-call-btn { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); border: 1px solid var(--border-secondary); color: var(--text-secondary); padding: 0.4rem 0.8rem; border-radius: 8px; cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: var(--backdrop-blur); } .endpoint-call-btn:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%); border-color: rgba(255, 255, 255, 0.25); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); } .endpoint-form { gap: 0.5rem 0.75rem; margin-top: 0.5rem; } .endpoint-param { display: flex; flex-direction: column; gap: 0.25rem; background: var(--bg-hover); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 0.5rem; } .param-name { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; } /* Adjust param-input to support