// Find the element by its class or ID var bookingText = document.querySelector('.btn--outline'); // or document.getElementById('booking-text'); // Apply the style directly if (bookingText) { bookingText.style.color = '#000000'; // Change to the color you want } // Create a