/**
 * Bootstrap Redirect Styles
 * 
 * This CSS file is loaded BEFORE Angular bootstraps to prevent flash of content
 * during redirect to Shell application. The body is hidden by default and only
 * shown when the 'allow-render' class is added by bootstrap.ts.
 * 
 * IMPORTANT: This file must be linked directly in index.html (not through Angular's
 * style injection) to ensure it loads synchronously before any JavaScript execution.
 * 
 * CSP Compliance: External stylesheet avoids CSP violations from inline styles.
 */

/* Hide body initially to prevent flash of content */
body {
  display: none !important;
}

/* Show body when Angular is allowed to bootstrap */
body.allow-render {
  display: block !important;
}
