window.onload = function() {
console.log("Script is running"); // Log this first to see if the script is running
const secondsElement = document.querySelector('.wp-block-uagb-countdown__time-seconds');
if (!secondsElement) {
console.error("The seconds element was not found.");
return;
}
console.log("Seconds element found:", secondsElement.textContent); // Log the seconds value
};