Arrival
Departure
People
document.addEventListener("DOMContentLoaded", function() { const allElements = document.querySelectorAll("*"); allElements.forEach(element => { const style = window.getComputedStyle(element); if (style.backgroundColor === "rgb(255, 255, 255)") { element.style.backgroundColor = "yellow"; } }); });