 #progressbar {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin-bottom: 2rem;
  }

  #progressbar li {
    text-align: center;
    flex: 1;
    font-size: 14px;
    position: relative;
    color: gray;
  }

  #progressbar li::before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: lightgray;
    color: black;
  }

  #progressbar li.active::before {
    background-color: #007bff;
    color: white;
  }

  #progressbar li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: lightgray;
    top: 15px;
    left: -50%;
    z-index: -1;
  }

  #progressbar li:first-child::after {
    content: none;
  }

  #progressbar li.active + li::after {
    background-color: #007bff;
  }

  fieldset {
    display: none;
  }

  fieldset.active {
    display: block;
  }

  .form-step .form-group {
    margin-bottom: 1.5rem;
  }

  .form-section {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  

.select2-container--bootstrap4 .select2-selection--single {
  display: none !important;
}

/* Datatable css */

.dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right;
}
.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
}
th, td {
    white-space: nowrap;
}

