Add responsive behavior and cell styling so the table remains usable on mobile.
.table-wrap { overflow-x: auto; } to enable horizontal scroll on small screens.th and td with padding and borders.@media (max-width: 640px) to reduce cell padding/font-size.Use overflow-x: auto on the wrapper for small screens.