/* Basic table styling */.waffle { font-family: 'Roboto', sans-serif; /* Use a modern font */ border-collapse: collapse; width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */ }.waffle td,.waffle th { border: 1px solid #ddd; /* Lighter border color */ padding: 10px; text-align: left; }.waffle th { background-color: #f5f5f5; /* Slightly darker header background */ font-weight: 600; }.waffle tr:nth-child(even) { background-color: #f9f9f9; /* Very subtle alternate row color */ } /* Optional: Add a hover effect */.waffle tr:hover { background-color: #f0f0f0; transition: background-color 0.3s ease; /* Smooth transition */ } /* Styling for links */.waffle a { color: #007bff; /* Blue link color */ text-decoration: none; }.waffle a:hover { text-decoration: underline; }