/* Load setelah spark.css — fix scroll tabel lebar di layout Spark (.wrapper overflow:hidden) */

.main > .content,
.content > .container-fluid,
.content .card,
.content .card-body {
  min-width: 0;
  max-width: 100%;
}

.table-scroll,
.table-responsive.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table,
.table-scroll > .table {
  width: max-content !important;
  min-width: 100%;
  margin-bottom: 0;
  table-layout: auto;
}

.table-scroll th,
.table-scroll td,
.table-scroll .table th,
.table-scroll .table td {
  white-space: nowrap !important;
}
