/* Hide the suggested facets section (we pre-configure the useful ones) */
.suggested-facets {
  display: none;
}

/* Hide the facet filter panels on table views */
.facet-results {
  display: none;
}

/* Hide the "Advanced export" link */
.advanced-export {
  display: none;
}

/* Hide the raw edit SQL link on canned query results */
.query-edit-sql {
  display: none;
}

/* Hide the "Run SQL" button and surrounding form chrome on canned query pages */
body.query .sql input[type="submit"],
body.query .sql .show-hide-sql {
  display: none;
}

/* Hide the table/view SQL definition at the bottom of table pages */
.wrapped-sql {
  display: none;
}

/* Compact table: truncate long cell text with ellipsis */
.rows-and-columns td {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}