/* 로딩 모달 스타일 */
.download-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

/* 로딩 모달 안의 내용 스타일 */
.download-modal-content {
  background-color: transparent !important;
  border: none !important;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

/* 로딩 스피너 스타일 */
.download-loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* 로딩 스피너 애니메이션 스타일 */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 프로그레스바 스타일 */
.download-progress-bar {
  width: 150%;
  height: 15px;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.download-progress {
  width: 0%;
  height: 100%;
  background-color: #0080FF;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

/* 로딩 텍스트 스타일 */
#download-loading-text {
  margin:0;
  font-size: 12px;
  color:white;
}