.tabulator {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  font-size: 13px;
}
.tabulator .tabulator-header {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}
.tabulator .tabulator-header-row,
.tabulator .tabulator-filter-row {
  display: grid;
}
.tabulator .tabulator-col,
.tabulator .tabulator-filter-cell {
  padding: 10px 8px;
  border-right: 1px solid #eef2f7;
}
.tabulator .tabulator-col:last-child,
.tabulator .tabulator-filter-cell:last-child {
  border-right: none;
}
.tabulator .tabulator-col {
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  user-select: none;
}
.tabulator .tabulator-filter-cell input,
.tabulator .tabulator-filter-cell select {
  width: 100%;
  box-sizing: border-box;
  height: 30px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 12px;
}
.tabulator .tabulator-tableholder {
  max-height: none;
  overflow: auto;
}
.tabulator .tabulator-row {
  display: grid;
  border-top: 1px solid #f1f5f9;
}
.tabulator .tabulator-cell {
  padding: 10px 8px;
  border-right: 1px solid #f1f5f9;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tabulator .tabulator-cell:last-child {
  border-right: none;
}
.tabulator .tabulator-row:hover {
  background: #f8fafc;
}
.tabulator .tabulator-row.tabulator-selected {
  background: #e8f0ff;
}
.tabulator .tabulator-empty {
  padding: 16px;
  color: #64748b;
}
