.wizard-wrapper {
    padding: 10px 20px 0 20px;
    position: relative;
}

/* Línea de fondo (gris) */
.wizard-line {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #eee;
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Línea azul de progreso */
.wizard-progress {
    position: absolute;
    top: 40%;
    left: 0;
    height: 4px;
    background-color: orange;
    z-index: 2;
    border-radius: 4px;
    transition: width 0.4s ease;
    transform: translateY(-50%);
    width: 0%;
}

/* Contenedor de pasos */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Cada paso */
.step {
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
}

/* Círculo del ícono */
.circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: white;
    border: 3px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: orange;
    font-size: 24px;
    z-index: 4;
    position: relative;
}

/* Etiqueta */
.label {
    margin-top: 8px;
    font-size: 14px;
    color: orange;
    font-weight: 500;
}

/* Paso activo */
.step.active .circle {
    background-color: orange;
    color: white;
    border: 3px solid orange;
}

.step.active .label {
    font-weight: bold;
}

/* Paso completado */
.step.completed .circle {
    background-color: white;
    color: orange;
    border: 3px solid orange;
}

.step.completed .label {
    opacity: 0.7;
}

.fila-error {
    background-color: #ffe6e6 !important;
    border: 2px solid #e74c3c !important;
}

.fila-error {
    background-color: #ffe6e6 !important;
}

