.progress-container {
  width: 100%;
  max-width: 80vw;
  margin: 20px auto;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background-color: #e0e0e0;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: forestgreen;
  transition: width 5s ease-in-out;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translate(0%, -50%);
  color: #000;
  font-weight: bold;
}