Horizontal Tables for Moblie View
Copy and paste this code into CSS
// Table adjustments for mobile view
@media (max-width: 600px) {
table {
width: 100%;
display: block;
overflow-x: auto;
white-space: nowrap; /* Prevents text wrapping in cells */
}
}