/* 전역 로딩 오버레이 + 스피너 */
.global-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000; /* 사이드바(200)·모달보다 위 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 18, 0.38);
    backdrop-filter: blur(1.5px);
    cursor: wait;
    /* 작업 중 모든 클릭/내비게이션 차단 */
    pointer-events: all;
}

.global-loading-spinner {
    width: 56px;
    height: 56px;
    border: 5px solid rgba(184, 160, 90, 0.25);
    border-top-color: #b8a05a;
    border-radius: 50%;
    animation: global-loading-spin 0.8s linear infinite;
}

@keyframes global-loading-spin {
    to { transform: rotate(360deg); }
}
