﻿/* Contenedor general */
#procesoUIPTL.proceso-container {
    margin: 30px 0;
    font-family: Arial, sans-serif;
}

/* Encabezado del proceso */
#procesoUIPTL .proceso-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

/* Contenedor del timeline */
#procesoUIPTL .proceso-timeline {
    position: relative;
    padding: 30px 0 0 0;
}

/* Línea gris de fondo */
#procesoUIPTL .progreso-linea {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    z-index: 1;
}

/* Barra azul animada */
#procesoUIPTL #progresoBarPTL {
    height: 4px;
    width: 0%;
    background: #3483fa;
    transition: width 0.4s ease;
    border-radius: 2px;
    position: absolute;
    top: 24px;
    left: 0;
    z-index: 2;
}

/* Contenedor de los pasos */
#procesoUIPTL .step-containerPTL {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

/* Cada paso */
#procesoUIPTL .stepPTL {
    text-align: center;
    flex: 1;
    position: relative;
}

/* Círculo del paso */
#procesoUIPTL .step-circlePTL {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e5e5;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: 0.3s;
}

/* Etiqueta del paso */
#procesoUIPTL .step-labelPTL {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.2;
}

/* Paso activo */
#procesoUIPTL .stepPTL.activePTL .step-circlePTL {
    background: #3483fa;
    color: white;
}

/* Paso completado */
#procesoUIPTL .stepPTL.donePTL .step-circlePTL {
    background: #00a650;
    color: white;
}

/* Paso fallido */
#procesoUIPTL .stepPTL.errorPTL .step-circlePTL {
    background: #e53935;
    color: white;
}

#procesoUIPTL .stepPTL.errorPTL .step-labelPTL {
    color: #e53935;
    font-weight: bold;
}
