﻿/* ================================
   GLOBAL PAGE LOADER
================================ */
#globalLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* match your theme */
    background: linear-gradient(135deg, #ff512f 0%, #dd2476 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* ABOVE EVERYTHING */
}

/* Spinner */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.3);
    border-top: 6px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
