/* Styles for the progress bar and steps */
.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  position: relative;
}
.step.active {
  background-color: #007bff;
}
.step.completed {
  background-color: #28a745;
}
.step-line {
  width: 100%;
  height: 4px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.step.active + .step-line {
  background-color: #007bff;
}
.step.completed + .step-line {
  background-color: #28a745;
}

.wizard-page {
  display: none;
}
.wizard-page.active {
  display: block;
}

/* Styles for the details components */
.details-item {
  margin-bottom: 0px;
}

.details-item:not(:last-child) {
  margin-bottom: 20px;
}

.details-item label {
  text-transform: capitalize;
  font-weight: bold;
}

/* Styles for datatables */
.dataTable{
  .datatable-column-fit-content {
    white-space: nowrap;
    width: 1%;
  }
  .datatable-layout-fixed{
    table-layout: fixed; 
    word-wrap:break-word; 
  }
  td{
    a:not(.btn){
      text-decoration:none;
      color:#212529;
      font-weight: 400;
      &:hover{
        font-weight: 500;
      }
    }
  } 
}

.pe-on{
  cursor: pointer;
}
