/* Atomic utilities — CSP style-src 'self' only; no inline styles in HTML/JS */

/* Visibility */
.is-hidden {
  display: none !important;
}

/* Margin top */
.u-mt-6 { margin-top: 6px; }
.u-mt-8 { margin-top: 8px; }
.u-mt-10 { margin-top: 10px; }
.u-mt-12 { margin-top: 12px; }

/* Margin bottom */
.u-mb-6 { margin-bottom: 6px; }
.u-mb-8 { margin-bottom: 8px; }
.u-mb-10 { margin-bottom: 10px; }

/* Flex / grid */
.u-self-end { align-self: end; }
.u-flex-row-gap-8 { display: flex; gap: 8px; }
.u-span-2 { grid-column: span 2; }
.u-span-3 { grid-column: span 3; }
.u-ml-auto { margin-left: auto; }

/* Action rows */
.u-actions-tight {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Pit wall insight banners */
.insight-banner {
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border, #333);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  line-height: 1.4;
}

.insight-banner--tele,
.insight-banner--timing {
  margin-top: 0;
  margin-bottom: 12px;
}

.insight-subhead {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.insight-alert {
  padding: 6px 0;
}

.insight-alert--crit {
  color: #ff6b6b;
}

.insight-banner.insight-alert--crit,
.insight-alert--crit:first-child:last-child {
  border-color: rgba(255, 107, 107, 0.45);
  background: rgba(255, 107, 107, 0.08);
}

.insight-alert--warn {
  color: #ffb347;
}

.insight-banner.insight-alert--warn {
  border-color: rgba(255, 179, 71, 0.45);
  background: rgba(255, 179, 71, 0.08);
}

.insight-alert--info {
  color: #7ec8ff;
}

.insight-fcy-preview {
  min-height: 1.2em;
  font-style: italic;
}
