/* ========================================
   Loading Overlay Component CSS
   ======================================== */
/* 용도: 데이터 로딩 시 진행 상황 표시 오버레이 */
/* 의존성: Font Awesome (fa-sync) */
/* 버전: 20251105001 */

/* 오버레이 배경 */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* 오버레이 표시 상태 */
.loading-overlay.visible {
    display: flex;
    opacity: 1;
}

/* 로딩 컨테이너 */
.loading-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

/* 슬라이드 다운 애니메이션 */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 로딩 제목 */
.loading-container h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 로딩 아이콘 색상 */
.loading-container h3 i {
    color: #4285f4;
}

/* 진행 바 컨테이너 */
.progress-container {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

/* 진행 바 */
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4285f4, #34a853);
    width: 0%;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

/* 진행률 텍스트 */
#progressText {
    font-weight: bold;
    color: #4285f4;
    margin: 5px 0;
}

/* 로딩 상세 메시지 */
#loadingDetail {
    color: #666;
    margin: 10px 0 20px;
    min-height: 20px;
}

/* 취소 버튼 */
.btn-cancel {
    padding: 8px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-cancel:hover {
    background-color: #d32f2f;
}

.btn-cancel:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.4);
}
