/* A class we can use with tables to force them to fit within the width
   of the page by using line wrapping (RTD forces the no-wrap option.  */

.wrapped-table {
    width: 100%;
    table-layout: fixed !important;
}

.wrapped-table td, .wrapped-table th {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
