.table-scroll {
  max-width: 800px;
  margin: 32px auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dedee3;
  border-radius: 6px;
  background: #fff;
}

.table-scroll:focus-visible {
  outline: 2px solid #2457a6;
  outline-offset: 2px;
}

.table-scroll table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  color: #18181b;
  font-size: 14px;
  line-height: 1.55;
}

.table-scroll th,
.table-scroll td {
  min-width: 112px;
  padding: 12px 14px;
  vertical-align: top;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #ececf0;
}

.table-scroll th {
  background: #f5f5f7;
  color: #46464e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.table-scroll tbody tr:nth-child(even) {
  background: #fafafa;
}

.table-scroll tbody tr:last-child td {
  border-bottom: 0;
}

.table-scroll p {
  margin: 0;
}

.table-scroll code {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .table-scroll {
    margin: 28px -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .table-scroll th,
  .table-scroll td {
    min-width: 132px;
    padding: 11px 12px;
  }
}
