/* Container for the horizontal stepper */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 40px;
    width: 100%;
}

/* Individual Step Group */
.stepper-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* The Circle/Dot */
.stepper-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

/* State: Done (Blue with checkmark) */
.stepper-dot.done {
    background-color: #0ab0fb;
    border-color: #0ab0fb;
    color: #fff;
}

/* State: Active (Blue border only) */
.stepper-dot.active {
    border-color: #0ab0fb;
    border-width: 3px;
    color: #0ab0fb;
}

/* Stepper Text */
.stepper-text {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-weight: 500;
}

.stepper-text.active {
    color: #0ab0fb;
    font-weight: 700;
}

/* Connecting Lines */
.stepper-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    margin-top: -20px; /* Adjust based on dot size to center vertically */
    z-index: 1;
}

/* State: Line Done (Blue) */
.stepper-line.done {
    background-color: #0ab0fb;
}
.bmi-display strong {
    color: #0ab0fb;
}
@media (max-width: 567px) {
   .stepper-text {
    display: none;
   }
   .stepper-line{
    margin-top: 0;
}
.stepper-container{
    margin-bottom: 0;
    padding: 1rem;
}
}
