/**
 * Minimal fallback when the main Next CSS chunk fails to load (e.g. dev cold
 * request, stale cache, or mixed .next from build + dev). Keeps layout readable.
 */
body {
  margin: 0;
  min-height: 100vh;
  color: #1a1a1a;
  background: #ffffff;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wg-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.wg-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  background: rgba(255, 255, 255, 0.92);
}

/* Match Tailwind flex helpers if the main bundle is missing */
.min-w-0 {
  min-width: 0;
}
.flex-1 {
  flex: 1 1 0%;
}
