/* Hide the rows for inactive tabs and reduce their height */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.table tbody tr.inactive {
    height: 0;
    overflow: hidden;
    visibility: hidden;
}