.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto;
    padding: 0.5rem;
    background: #f0f0f000;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  .progress-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-align: left;
  }
  
  /* Responsive adjustment for mobile */
  @media (max-width: 600px) {
    .progress-label {
      text-align: center;
    }
  }
  
  
  .progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: #dddddd7a;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.6s ease-in-out;
  }
  