/* busytape.css */

/* Progress / Timeline styling */
.mta-progress {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem; /* space for the line */
}

.mta-progress::before {
  content: "";
  position: absolute;
  left: 1.1rem; /* align with icons */
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #e0e0e0;
}

.mta-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.mta-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  position: relative;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #4CAF50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.mta-step.active .step-icon {
  background-color: #ff9800;
}

.step-text {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Connect the circles */
.step-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 3px;
  height: calc(100% + 2rem);
  background-color: #e0e0e0;
  z-index: -1;
}

.mta-step:last-child .step-icon::after {
  display: none;
}
