/* Presentation for the platform health view (Http/Web/HealthController + views/health.blade.php).
   Kept in its own file per the strict CSS/JS/HTML separation rule. Colors use design tokens so a
   host theme can re-skin without touching markup; the asset pipeline (Vite) lands in M-004. */
.platform-health {
    font-family: var(--platform-font-body, system-ui, sans-serif);
    padding: var(--platform-space-md, 1rem);
}

.platform-health__status {
    margin: 0;
    font-weight: 600;
}

.platform-health[data-healthy="true"] .platform-health__status {
    color: var(--platform-color-ok, #1a7f37);
}

.platform-health[data-healthy="false"] .platform-health__status {
    color: var(--platform-color-error-text, #c0392b);
}
