html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
/* Colors follow the Material 3 baseline scheme of the Compose loading overlay that takes over from this one. */
.loadingScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fef7ff;
    color: #49454f;
    font: 14px system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 5;
}
.loadingTrack {
    position: relative;
    width: min(240px, 60%);
    height: 4px;
    border-radius: 2px;
    background-color: #e6e0e9;
    overflow: hidden;
}
.loadingBar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 2px;
    background-color: #6750a4;
    transition: width 0.2s ease-out;
}
.loadingBar.indeterminate {
    width: 40%;
    transition: none;
    animation: loadingSlide 1.2s ease-in-out infinite;
}
@keyframes loadingSlide {
    from { transform: translateX(-100%); }
    to { transform: translateX(250%); }
}
.loadingStatus {
    text-align: center;
    padding: 0 24px;
}
