/* ===============================
   GLOBAL LOADER
   =============================== */

.global-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}

    .global-loader.active {
        opacity: 1;
        visibility: visible;
    }

.loader-content {
    text-align: center;
}

.loader-text {
    margin-top: .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: #6c757d;
}
