#barra-contador {
    width: 100%;
    max-width: 700px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 25px;
    margin: 40px auto; /* Espacio adicional para los indicadores */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#progreso {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    border-radius: 25px 0 0 25px;
    transition: width 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contador-texto {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0;
}

.indicadores {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -20px; /* Ajuste vertical para que los indicadores se vean encima de la barra */
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    padding: 0 10px; /* Espaciado para mantener los indicadores dentro de los límites */
}
