setTimeout(function() {
    document.querySelectorAll('.result-row > .col-sm-6:first-child').forEach(function(col) {
        const childNodes = Array.from(col.childNodes);
        
        childNodes.forEach(function(node) {
            if (node.nodeType === 3 && node.textContent.trim().match(/\d+\.\d+m/)) {
                node.remove();
            }
        });
        
        const br = col.querySelector('br');
        if (br) br.remove();
    });
}, 500); // Wait 500ms - adjust as needed

