.global-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-box {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.loading-text {
    font-size: 14px;
    color: #495057;
}	