.hades-command-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.hades-command-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(155, 114, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(94, 54, 201, 0.34), rgba(155, 114, 255, 0.16));
  color: #f7f3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 0 24px rgba(139, 92, 246, 0.12);
}

.hades-command-button:hover {
  border-color: rgba(174, 139, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.24);
}

.hades-command-button.is-off {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #8b93a1;
  box-shadow: none;
}

.collector-card {
  margin-top: 22px;
  padding: 24px;
}

.collector-card-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.collector-card-head h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.collector-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(88px, 1fr));
  gap: 10px;
}

.collector-stat {
  min-width: 92px;
  padding: 12px 14px;
  border: 1px solid rgba(155, 114, 255, 0.18);
  border-radius: 12px;
  background: rgba(111, 67, 218, 0.08);
  text-align: center;
}

.collector-stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.collector-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collector-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.collector-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(4, 6, 10, 0.4);
  color: var(--text-soft);
  font-size: 12px;
}

.collector-row strong {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.collector-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #59616d;
}

.collector-dot.ready {
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.collector-dot.needs_configuration {
  background: var(--medium);
  box-shadow: 0 0 10px rgba(234, 203, 99, 0.45);
}

.collector-dot.unavailable {
  background: var(--critical);
  box-shadow: 0 0 10px rgba(255, 84, 104, 0.45);
}

.collector-loading {
  padding: 18px;
  color: var(--muted);
  font-size: 12px;
}

#refresh-collectors {
  min-height: 38px;
  padding: 0 14px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hades-command-bar {
    width: 100%;
    justify-content: flex-start;
  }

  .collector-card-head {
    flex-direction: column;
  }

  .collector-summary {
    width: 100%;
  }
}
