  /* Add your CSS styles here */
  .progress-bar {
      display: flex;
      justify-content: space-between;
      list-style-type: none;      
  }
  .progress-item {
      flex: 1;
      text-align: center;      
      display: inline-flex;
      padding: 20px;
      background-color: #eee;
      cursor: pointer;
      width: fit-content;
      height: auto;
      color: black;

  }
  .progress-item.active {
      background-color: #007BFF;
      color: #fff;
  }
  .form-page {
      display: none;
  }
  .form-page.active {
      display: block;
  }