﻿/* wwwroot/css/site.css */

/* Overlay Container */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white backdrop */
    backdrop-filter: blur(4px); /* Modern blur effect */
    z-index: 9999; /* Always on top */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

    /* State: Active */
    #global-loader.is-visible {
        opacity: 1;
        pointer-events: all;
    }

/* Spinner Animation */
.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #E2E8F0;
    border-bottom-color: #4A90E2; /* Your brand color */
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Prevent body scrolling when loader is active */
body.loading-locked {
    overflow: hidden;
}