/* ─── CUSTOM (JobsAdmire) 2026-07 ─ minimal /user/login ──────────────────────
   Partner file: /custom/login-clean.js (tags unwanted nodes with data-ja-hide).
   Injected from client/public/index.html. See CLAUDE.md gotchas. */
[data-ja-hide="1"] {
  display: none !important;
}

/* Anti-flash: keep the app invisible on /user/login until the overlay has
   classified the DOM (JS adds ja-ready, with a 1.5s fail-safe timeout). */
body.ja-login-clean #root {
  opacity: 0;
}
body.ja-login-clean.ja-ready #root {
  opacity: 1;
  transition: opacity 0.1s;
}
