document.addEventListener('DOMContentLoaded', function() { // Auto-hide alerts after 5 seconds const alerts = document.querySelectorAll('.alert'); alerts.forEach(function(alert) { setTimeout(function() { alert.style.opacity = '0'; setTimeout(function() { alert.style.display = 'none'; }, 500); }, 5000); }); });