/* Make all tables responsive and scrollable */
table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* improve table text wrapping */
table td, table th {
    word-wrap: break-word;
    white-space:normal;
}