/* ==== CONTADOR Y BARRA DE PROGRESO (temporizador.css) ==== */
#mensajeRespuesta {
    margin-top: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.timer-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background: #e5e9ff;
    border-radius: 50px;
    overflow: hidden;
    height: 10px;
    position: relative;
}

.timer-bar {
    height: 10px;
    width: 100%;
    background: linear-gradient(90deg, #074ce7, #07b8ff);
    transform-origin: left center;
    transition: transform 1s linear;
}

/* Efecto de energía animada (opcional, puedes quitarlo si no lo quieres) */
@keyframes energia {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.timer-bar {
    background-size: 200% 200%;
    animation: energia 4s linear infinite;
}

.timer-text {
    margin-top: 10px;
    color: #074ce7;
    font-weight: bold;
    font-size: 15px;
}
