/* Container for the horizontal stepper */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 20px;
    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: #212d3d;
    border-color: #212d3d;
    color: #fff;
}

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

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

.stepper-text.active {
    color: #212d3d;
    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: #212d3d;
}
