/* Shared boot loader: the same quiet loading screen on every page of the system. */
.app-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;width:100%;min-height:56vh;padding:56px 20px;text-align:center;color:#687681}
.app-loading--page{min-height:100dvh}
.app-loading__logo{width:auto;height:auto;max-width:132px;opacity:.92}
.app-loading__spinner{width:30px;height:30px;border-radius:50%;border:3px solid #d7e6df;border-top-color:#176c58;animation:app-loading-spin .85s linear infinite}
.app-loading__label{font-size:13px;line-height:1.5;margin:0}
@keyframes app-loading-spin{to{transform:rotate(1turn)}}
/* Respect reduced motion: keep the spinner visible but slow it right down. */
@media (prefers-reduced-motion:reduce){.app-loading__spinner{animation-duration:2.4s}}
