   /* Styles for the wizard container */
   #wizard {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Styles for the steps container */
  .steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  /* Styles for each step */
  .step {
    flex: 1;
    display: flex;
    align-items: center;
    opacity: 0.5;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Styles for the wizard step icons */
  .bd-wizard-step-icon {
    background-color: #4caf50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  /* Styles for the wizard step titles and subtitles */
  .bd-wizard-step-title,
  .bd-wizard-step-subtitle {
    margin: 0;
  }
  
  /* Styles for the media container */
  .media {
    display: flex;
    align-items: center;
  }
  
  /* Styles for the form sections */
  .form-sections {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
  }
  