.mobile-progress-step .step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-top: 20px;
}

.mobile-progress-step .step-title {
  display: flex;
  align-items: center;
  width: 97%;
  justify-content: space-between;
}

.mobile-progress-step .step-name {
  font-weight: 500;
  color: #b3b3b3;
  display: flex;
}

.mobile-progress-step .active .step-name {
  font-weight: 700;
  color: #f97316 !important;
}

.mobile-progress-step .completed .step-name {
  font-weight: 700 !important;
  color: #666666 !important;
}

.mobile-progress-step .status-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.mobile-progress-step .status-icon.partial {
  background-color: #f97316;
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.mobile-progress-step .progress-bar-container {
  display: flex;
  width: 100%;
  height: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mobile-progress-step .progress-segment {
  flex: 1;
  height: 100%;
  background-color: #e5e7eb;
  margin-right: 5px;
}

.mobile-progress-step .progress-segment:last-child {
  margin-right: 0;
}

.mobile-progress-step .progress-segment.completed {
  background-color: #10b981;
}

.mobile-progress-step .progress-segment.partial {
  background-color: #f97316;
}

.mobile-progress-step .step-header[aria-expanded="false"]::after {
  width: 1.25rem;
  height: 1.25rem;
  content: "\f282";
  font-family: bootstrap-icons !important;
}

.mobile-progress-step .stud-details-step::after {
  content: "\f286";
  font-family: bootstrap-icons !important;
}

.mobile-progress-step .completed .status-icon {
  background-color: #10b981;
  color: white;
}

.mobile-progress-step .completed .status-icon::after {
  content: "\f26e";
  font-family: bootstrap-icons !important;
}

.mobile-progress-step .progress-segment.active {
  background-color: #f97316;
  background-image: linear-gradient(90deg, #f97316, white);
}

@media (max-width: 567px) {
  .mobile-progress-step .step-title {
    width: 92% !important;
  }

  .mobile-progress-step .step-name {
    width: 85% !important;
    font-size: 12px;
  }
}

