.ilava-progress-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f1f1f1;
  border-radius: 8px;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: sans-serif;
}
.ilava-step {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #aaa;
  position: relative;
}
.ilava-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}
.ilava-step:last-child::after {
  display: none;
}
.ilava-step.active {
  color: #063459;
}
.ilava-step.completed {
  color: #4CAF50;
}
