When I added the Modal trigger, the table lines changed. I suspect it has to do with the buttons in the table. I'm new to HTML/CSS/JS so this whole experience is quite different for me. Any advice or tips for future projects would be greatly appreciated.
$('.toggleModal').on('click', function(e) {
$('.modal').toggleClass('active');
});
html {
font: 0.75em/1.5 sans-serif;
color: #333;
background-color: #fff;
padding: 1em;
}
/* Rest of the CSS styles */