/* Custom stepper style */
.stepper-horizontal {
    margin-bottom: 2.5rem;
    position: relative;
}
.stepper-horizontal::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background-color: #e4e6eb;
    z-index: 1;
}
.stepper-horizontal .stepper-progress {
    position: absolute;
    top: 25px;
    left: 12.5%;
    height: 2px;
    background-color: #024a35;
    z-index: 1;
    width: 0%;
    transition: width 0.3s ease;
}
.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
    cursor: pointer;
}
.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e4e6eb;
    color: #6c757d;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.step-item.active .step-circle {
    background-color: #024a35;
    border-color: #024a35;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(2, 74, 53, 0.25);
    transform: scale(1.1);
}
.step-item.completed .step-circle {
    background-color: #198754;
    border-color: #198754;
    color: #ffffff;
}
.step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}
.step-item.active .step-text {
    color: #024a35;
    font-weight: 700;
}
.step-item.completed .step-text {
    color: #198754;
}
.step-item:not(.completed):not(.active) {
    cursor: not-allowed;
}

/* Ensure step transition animations look premium */
.ent-step-container {
    animation: fadeIn 0.4s ease;
}
