.el-lifecycle-container_2ff95eaa {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: auto;
}

.el-timeline-wrapper {
    position: relative;
    padding-top: 30px;
    min-width: 1000px; /* Ensures horizontal scrolling on smaller viewports instead of breaking */
}

/* Timeline connectors */
.el-connector-line {
    position: absolute;
    top: 100px;
    left: 6.25%;
    right: 6.25%;
    height: 4px;
    background: #e4e7ed;
    z-index: 1;
    border-radius: 2px;
}

.el-connector-progress {
    height: 100%;
    background: #00b4a8;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.el-timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.el-timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

/* Step circular node */
.el-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e4e7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    transition: all 0.3s ease;
}

.el-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-step-icon i,
.el-step-icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Circle Number (01-08) */
.el-step-num-top {
    font-size: 13px;
    font-weight: 600;
    color: #909399;
    letter-spacing: 1px;
}

/* Bold Step Title */
.el-step-title {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px 0;
    color: #1a2a4a;
}

/* Description Text */
.el-step-desc {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
}

/* Active Highlight (Step 5 Glow) */
.el-step-active .el-step-circle {
    border-color: #00b4a8;
    background-color: #00b4a8;
    box-shadow: 0 0 15px rgba(0, 180, 168, 0.5);
}

.el-step-active .el-step-icon i,
.el-step-active .el-step-icon svg {
    color: #fff;
    fill: #fff;
}

.el-step-active .el-step-num-top {
    color: #00b4a8;
}

/* Completed Steps style */
.el-step-completed .el-step-circle {
    border-color: #1a2a4a;
    color: #1a2a4a;
}

.el-step-completed .el-step-icon i,
.el-step-completed .el-step-icon svg {
    color: #1a2a4a;
    fill: #1a2a4a;
}

.el-step-completed .el-step-num-top {
    color: #1a2a4a;
}
