/* Shell: loading de autenticação e visibilidade do app */
#app.hidden {
    display: none !important;
}

#loading-auth {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
}

#loading-auth.hidden {
    display: none !important;
}

html.dark #loading-auth {
    background-color: #000000;
}
