@charset "UTF-8";

/* モーダル背景（全画面） */
#uploadModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* モーダルの中身（中央の白いカード） */
#uploadModal .modal-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* プログレスバーの外枠 */
.progress-container {
  width: 100%;
  height: 12px;
  background: #eee;
  border-radius: 6px;
  margin: 15px 0;
  overflow: hidden;
}

/* プログレスバー本体 */
#progress-bar {
  width: 0;
  height: 100%;
  background: #4caf50;
  transition: width 0.3s;
}

/* テキスト */
#progress-text {
  font-size: 14px;
  color: #333;
}