/* Shrink markdown tables (program & hotel schedules) so rows fit on one line */
article table {
  font-size: 0.85em;
  width: 100%;
  table-layout: auto;
}

article table th,
article table td {
  white-space: nowrap;
  padding: 0.3em 0.6em;
}

/* Allow long session/program titles to wrap instead of forcing the table wider than the page */
article table td:nth-child(3) {
  white-space: normal;
}

@media (max-width: 600px) {
  article table {
    font-size: 0.75em;
  }
}
