/* Loading screen – shown until React mounts and replaces #root contents */
.app-loader{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;background:#f8f9fa;font-family:system-ui,-apple-system,sans-serif}
.app-loader img{width:80px;height:auto;margin-bottom:24px}
.app-loader-spinner{width:32px;height:32px;border:3px solid #e9ecef;border-top-color:#fe7719;border-radius:50%;animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
