/* Make wide markdown tables scroll instead of overflow */
.content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

/* Optional: keep cells readable on small screens */
.content th,
.content td {
  white-space: nowrap;
}
