
/* remove underlines from all links except when hover */
a {
    text-decoration: none;
}
a:hover {
    text-decoration:underline;
}

/* AG Grid tables: remove the default 150x min height with autoHeight
https://www.ag-grid.com/archive/31.3.0/react-data-grid/grid-size/#min-height-with-auto-height */
.ag-center-cols-viewport {
    min-height: unset !important;
}