@charset "utf-8";

#uploadModal {
  display: none;          /* 기본 숨김 */
  position: fixed;        /* 화면 전체 기준 */
  z-index: 9999;          /* 맨 위에 표시 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* 반투명 배경 */
}

.progmodal-content {
  position: fixed;        /* 화면 기준 중앙 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* 제목 */
.progmodal-content h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}

/* 프로그래스바 */
#progressBar {
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
}

/* 퍼센트 텍스트 */
#progressText {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}
/* 다크 모드 */
.dark-mode #uploadModal {background: rgba(0,0,0,0.8);}
.dark-mode #uploadModal .progmodal-content {background: #1e1e1e;color: #f0f0f0;border-radius: 12px;padding: 25px;width: 320px;box-shadow: 0 4px 20px rgba(0,0,0,0.6);}
.dark-mode #uploadModal h3 {color: #ffffff;margin-bottom: 15px;}
.dark-mode #progressBar { -webkit-appearance: none;appearance: none;width: 100%;height: 12px;border-radius: 6px;background-color: #333;overflow: hidden;}
.dark-mode #progressBar::-webkit-progress-bar {background-color: #333;border-radius: 6px;}
.dark-mode #progressBar::-webkit-progress-value {background: linear-gradient(90deg, #ff4d4d, #d81b60);border-radius: 6px;}
.dark-mode #progressBar::-moz-progress-bar {background: linear-gradient(90deg, #ff4d4d, #d81b60);border-radius: 6px;}
.dark-mode #progressText {margin-top: 10px;font-weight: bold;color: #ff4d4d;}
