.utsjr-contador-wrapper {
    text-align: center;
    margin-bottom: 14px;
}

.utsjr-contador-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.utsjr-tiempo-bloque {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 8px 14px;
    min-width: 56px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.utsjr-tiempo-bloque span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.utsjr-tiempo-bloque small {
    font-size: 10px;
    opacity: 0.75;
    margin-top: 3px;
    letter-spacing: 1px;
}

.utsjr-btn-resultados-disponibles {
    background: #00A788;
    animation: utsjr-pulse-btn 1.6s infinite;
}

@keyframes utsjr-pulse-btn {
    0% {
        box-shadow: 0 0 0 0 #00a78886;
    }

    70% {
        box-shadow: 0 0 0 12px rgba(54, 172, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(54, 172, 47, 0);
    }
}