/* Status Bar */
#status-bar {
  display: none;
  align-items: center;
  gap: 20px;
  padding: 8px 20px;
  background: #0a0a0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #64748b;
  flex-shrink: 0;
}

.status-section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-agent {
  margin-right: auto;
}

.status-agent .status-value {
  color: #f97316;
  font-weight: 600;
}

.status-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-value {
  color: #cbd5e1;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
  flex-shrink: 0;
}

.status-dot.connected {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.status-error .status-dot {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}
