
body {
  font-family: 'DM Sans', 'Roboto', system-ui, -apple-system, sans-serif;
  background-color: var(--gray-50);
  color: var(--text-primary);
}

/* FORCE floating behavior on the specific yellow alert banner */
.alert-warning {
  position: fixed !important;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-notification);
  width: auto;
  min-width: 400px;
  max-width: 80%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}