/**
 * 表格层：自 admin-theme 抽离，行为与级联与迁移前 admin-theme 内嵌片段一致。
 * 须紧跟 admin-theme 之后、portal 之前加载（见 platform_layout.html）。
 */

/* 表格：在 Tabler table 基础上补层次（hover、表头） */
.table thead th {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(148, 163, 184, 0.95);
  border-bottom-width: 1px;
}

.table tbody tr {
  transition: background-color 0.12s ease;
}

.table-hover tbody tr:hover,
.table tbody tr:hover {
  background-color: rgba(32, 107, 196, 0.06) !important;
}

.table-vcenter td,
.table-vcenter th {
  vertical-align: middle !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --tblr-table-accent-bg: rgba(255, 255, 255, 0.02);
}
