body {
  background:
    radial-gradient(circle at top right, rgba(93, 214, 243, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 130, 153, 0.18), transparent 22%),
    #121416;
}

.nav-item {
  color: #94a3b8;
  transition: 150ms ease;
}

.nav-item:hover,
.jump-view:hover {
  transform: translateY(-1px);
}

.nav-item:hover {
  background: #282a2c;
  color: #e2e8f0;
}

.nav-item-active {
  background: linear-gradient(90deg, rgba(93, 214, 243, 0.16), transparent);
  color: #5dd6f3;
  box-shadow: inset 2px 0 0 #5dd6f3;
}

.panel,
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(30, 32, 34, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

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

.panel-header h3 {
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.metric-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #64748b;
}

.metric-value {
  margin-top: 0.7rem;
  font-family: Manrope, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.metric-sub {
  margin-top: 0.7rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.status-running {
  background: rgba(93, 214, 243, 0.14);
  color: #5dd6f3;
}

.status-stopped {
  background: rgba(100, 116, 139, 0.18);
  color: #94a3b8;
}

.status-paused {
  background: rgba(255, 183, 132, 0.16);
  color: #ffb784;
}

.status-unknown {
  background: rgba(255, 143, 143, 0.12);
  color: #ff8f8f;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.form-field span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 700;
}

.form-field input {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.9rem;
  background: #282a2c;
  color: white;
  padding: 0.9rem 1rem;
}

.form-field input:focus {
  outline: none;
  border-color: rgba(93, 214, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(93, 214, 243, 0.15);
}

.action-button {
  border-radius: 0.8rem;
  background: #282a2c;
  color: #e2e8f0;
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: 150ms ease;
}

.action-button:hover {
  background: #333537;
}
