/* Step container */
.step-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Each step block */
.step-item {
  border-left: 2px solid #dee2e6;
  padding-left: 1rem;
  position: relative;
}

/* Active step indicator */
.step-item.active {
  border-left-color: #012a88;
}

/* Icon + label row */
.step-label {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.step-label .btn-link {
  all: unset;
  display: block;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: #012a88 !important;
}

.process-step-icon {
  background-color: #e9ecef;
  border-radius: 50%;
  border: 2px solid #012a88;
  color: #012a88;
}

/* Icon styling */
.step-label i {
  font-size: 8rem; /* Increase icon size */
  color: #012a88; /* Ensure consistent primary color */
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Collapse content block */
.step-content {
  background-color: transparent;
  padding-left: 1.5rem;
}

/* Button spacing */
.step-content .btn {
  min-width: 100px;
}

.card:hover .flex-shrink-0 i {
  color: #fff !important; /* or any contrasting color */
  transition: color 0.3s ease;
}
