/* 대용량 zip 다운로드 로딩 레이어 팝업 (resources/js/file/zip-download-progress.js 와 짝) */
.zip-download-progress-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
}

.zip-download-progress-box {
    position: relative;
    z-index: 9999;
    background: #fff;
    padding: 40px 56px 56px;
    border-radius: 8px;
    text-align: center;
    min-width: 480px;
}

.zip-download-progress-tit-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.zip-download-progress-spinner {
    display: inline-block;
    width: 33px;
    height: 33px;
    background: url('../../images/common/spinner.gif') no-repeat center center / contain;
}

.zip-download-progress-title {
    margin: 0;
    color: #1E1E21;
    font-size: 20px;
    font-weight: 600;
}

.zip-download-progress-desc {
    margin: 24px 0 20px;
    color: #1E1E21;
    font-size: 16px;
    font-weight: 400;
}

.zip-download-progress-bar {
    width: 100%;
    height: 12px;
    background: #F7F7F7;
    border-radius: 8px;
    overflow: hidden;
}

.zip-download-progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #0086FF;
    transition: width 0.3s ease;
}

.zip-download-progress-status {
    margin: 0;
    color: #999;
    font-size: 12px;
}