/*
 * Path: assets/css/tables.css
 * 說明：
 */

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

.table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--color-text);
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--color-divider);
  white-space: nowrap;
}

.table th {
  color: var(--color-text-soft);
  font-weight: var(--fw-semibold);
  background: rgba(255,255,255,0.03);
  position: sticky;
  top: 0;
}

.table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}