/* Container for the progress bar */
.progress-container {
  width: 100%;
  max-width: 540px;
  background: #333;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 10px auto 0;
  box-sizing: border-box;
  position: relative;
  margin-top: 50px;
}

/* The actual progress bar fill */
.progress-bar {
  height: 40px;
  width: 0%;
  background: linear-gradient(to right, #4e085f, #7a1fa2, #c56cff);
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Text showing progress percent */
.progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: white;
  font-weight: 600;
  pointer-events: none;
  font-size: 14px;
}
