.progress-container {
  max-width: 300px;
  width: 100%;
  padding-right: 6rem;
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.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-title {
    font-weight: bold;
    color: #0d6efd;
}
.modal-header {
    border-bottom: none;
    padding: 1rem 1.25rem; /* tweak as needed */
}
.mini-modal {
    max-width: 70%; 
    width: auto !important;
    height: 55vh;
}
.custom-modal-width {
    max-width: 90%; 
    width: auto !important;
    height: 95vh;
}
.full-modal {
    max-width: 95%;
    width: 95%;
    margin: 2.5% auto;
    display: flex;
    align-items: center;
}
#modalForLinkContent .modal-content {
    height: 99%;
}
@media (min-width: 62rem) {
    .mini-modal {
        max-width: 36.25rem;
    }
    .custom-modal-width {
        max-width: 56.25rem;
    }
    .full-modal {
        max-width: 95%;
    }
}
.modal-multi-choices {
    max-height: 20rem; 
    overflow-y: auto;
}
.modal {
  overflow: visible !important;
  overflow-y: auto !important;
}
.modal-dialog, .modal-content {
    transform: none !important;
    max-height: 95vh;
}

/*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;
}
.form-control-hours {
  max-width: 100px !important;
}
.form-control-amount {
  max-width: 100px !important;
}

.text-status {
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.text-status-draft {
    color: #6c757d;
    background-color: #e2e3e5;
}
.text-status-success {
    color: #155724;
    background-color: #d4edda;
}
.text-status-error {
    color: #721c24;
    background-color: #f8d7da;
}
.text-status-warning {
    color: #856404;
    background-color: #fff3cd;
}
.text-status-info {
    color: #0c5460;
    background-color: #d1ecf1;
}
.text-status-muted {
    color: #6c757d;
    background-color: #e2e3e5;
}