/* ==========================================================================
   styles/styles.css — monitoring-pipeline (dark theme)
   Import AFTER theme.css.

   This file only does two things:
   1. Sets the color values for the dark theme via :root
   2. Adds the .status-card component — the only thing unique to this page
   ========================================================================== */

/* --------------------------------------------------------------------------
   DARK THEME — COLOR VALUES
   The ONLY meaningful difference from the main site.
   Everything else — layout, navbar, container, footer, buttons, typography —
   comes from theme.css and works identically on both sites.
   -------------------------------------------------------------------------- */

:root {
  --color-bg: #0f1117; /* dark page background */
  --color-surface: #1e2330; /* elevated card / navbar background */
  --color-border: #2d3748; /* subtle dark border */
  --color-text: #e2e8f0; /* light primary text */
  --color-muted: #94a3b8; /* muted secondary text */
  --color-accent: #60a5fa; /* blue links */
  --color-accent-hover: #93c5fd; /* lighter blue on hover (inverted from light theme) */
}

/* --------------------------------------------------------------------------
   STATUS CARD
   The only component that exists on this page and nowhere else.
   Everything else on this page (navbar, container, footer, links)
   is already handled by theme.css.
   -------------------------------------------------------------------------- */

main {
  padding: var(--space-lg) 0; /* less vertical space on phones */
}

.status-card {
  display: flex; /* flex is just for the inner content row */
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: var(--space-md); /* stacking */
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
}

.status-text {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

main .container {
  text-align: center;
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-sm); /* tighter horizontal padding on phones */
  }
}
