.sticky-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
z-index: 1000;
}
.close-btn {
background-color: #666;
color: #fff;
border: none;
padding: 5px 10px;
cursor: pointer;
}
// Optional: Add event listener to close button
document.querySelector('.close-btn').addEventListener('click', function() {
document.querySelector('.sticky-banner').style.display = 'none';
});