/**
 * FedBot Status Page — status color classes and card styling.
 * Matches main site theme: dark background, teal grid, glass panels, glowing dots.
 */

/* Status text colors */
.status-operational {
  color: #22c55e;
}

.status-degraded {
  color: #facc15;
}

.status-down {
  color: #ef4444;
}

.status-unknown {
  color: #6b7280;
}

.status-not_deployed {
  color: #6b7280;
}

.status-dot.status-not_deployed {
  background: #6b7280;
  box-shadow: 0 0 6px rgba(107, 114, 128, 0.5);
}

/* Status dot indicator */
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

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

.status-dot.status-degraded {
  background: #facc15;
  box-shadow: 0 0 10px #facc15;
}

.status-dot.status-down {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

.status-dot.status-unknown {
  background: #6b7280;
  box-shadow: 0 0 6px rgba(107, 114, 128, 0.5);
}

/* Service card — glass panel style */
.service-card {
  background: linear-gradient(
    180deg,
    rgba(12, 18, 28, 0.9),
    rgba(8, 14, 22, 0.85)
  );
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
}
