.progress-container {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 10px 0;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(to right, #ff2020, #ff6600);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
    text-align: center;
  }
  
  .progress-text {
    position: absolute;
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    line-height: 20px;
    width: 100%;
  }