#progressContainer {
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  margin-top: 10px;
  height: 20px;
  position: relative;
}

#progressBar {
  width: 0%;
  height: 100%;
  background-color: #4caf50;
  transition: width 0.2s ease;
}

#progressText {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
