﻿#globalLoader {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    background: #23262e;
    padding: 24px 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.loader-text {
    font-size: 15px;
    line-height: 1.5;
}

.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255,255,255,.2);
    border-top-color: #4da3ff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
#globalLoader.active {
    display: flex;
}