
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 560px;
  border-collapse: collapse;
  width: 100%;
}

.table-scroll th,
.table-scroll td {
  padding: 8px 12px;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table-scroll {
    overflow-x: auto;
  }
  .table-scroll table {
    min-width: 560px;
  }
  .table-scroll::after {
    content: "← Swipe left or right to see more.";
  }
}

.table-scroll {
  position: relative;
  overflow-x: auto;
}

.table-scroll::after {
  position: sticky;
  left: 0;
  bottom: 100%;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #6b7280;
}

.table-scroll {
  mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
}

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