/* Left-align all table content — mdbook's default theme centers the
   whole table block (margin: 0 auto) and browsers center <th> text by
   default. Reference tables in this book read left to right, not centered. */
table {
    margin: 0;
    width: 100%;
}
table th,
table td {
    text-align: left;
}
