 #progressContainer {
    width: 200px;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  #progressBar {
    width: 0%;
    height: 100%;
    background-color: #4caf50;
    transition: width 0s;
  }
  
   #submitButton:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
    border: 1px solid #aaa;
  }