.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.progress-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.progress-line {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  height: 4px;
  width: 100%;
  background-color: #dee2e6;
  z-index: 0;
}
.progress-line-fill {
  position: absolute;
  top: 1.5rem;
  left: 0;
  height: 4px;
  background-color: var(--bs-success);
  z-index: 1;
  transition: width 0.3s;
}
.step-label {
  margin-top: 0.05rem;
  font-size: 0.9rem;
}

.scroll-box {
  width: 300px;
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  border-radius: 8px;
}

/*modal css  */
.modal {
  overflow: visible !important;
}
.modal-dialog, .modal-content {
  transform: none !important;
}

/*UI for Calendar 5 Style*/

.ui-datepicker select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}
.ui-datepicker-month {
  border-radius: 4px;
  font-size: 0.9rem !important;
  margin-right: 2px !important;
}
.ui-datepicker-year {
  border-radius: 4px;
  font-size: 0.9rem !important;
}
.ui-datepicker {
  z-index: 99999 !important;
}