/* Global Loader (re-usable) */
.app-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: saturate(160%) blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.app-loader.is-open {
    display: flex
}

.app-loader__card {
    width: min(560px, 92vw);
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.app-loader__title {
    margin: 0 0 .25rem;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a
}

.app-loader__msg {
    margin: .25rem 0 1rem;
    color: #334155
}

.app-loader__bar {
    height: 10px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden
}

.app-loader__barInner {
    height: 100%;
    width: 12%;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    transition: width .35s ease
}

.app-loader__foot {
    margin-top: .6rem;
    font-size: 12px;
    color: #64748b
}