.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-self-stretch {
  justify-self: stretch;
}
.justify-between {
  justify-content: space-between;
}
.flex-1 {
  flex: 1;
}
.w-full {
  width: 100%;
}
.hlxb-table {
  --border-radius: 4px;
  --text-size: 14px;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: var(--text-size);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.hlxb-table::-webkit-scrollbar {
  display: none;
}
.hlxb-table .virtual-container {
  width: 100%;
  position: relative;
}
.hlxb-table .virtual-container::-webkit-scrollbar {
  display: none;
}
.hlxb-table .virtual-spacer {
  pointer-events: none;
}
.hlxb-table .virtual-spacer td {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
.hlxb-table .table {
  width: 100%;
  border-spacing: 0;
  color: #333;
}
.hlxb-table .thead.thead-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.hlxb-table .thead .tr {
  box-shadow: 0 1px 0 #d8d8d8;
}
.hlxb-table .thead .tr .th {
  background-color: #f1f4f7;
  padding: 0 12px 0 16px;
  text-align: left;
  height: 38px;
}
.hlxb-table .thead .tr .th.fixed-left,
.hlxb-table .thead .tr .th.fixed-right {
  position: sticky;
  z-index: 10;
}
.hlxb-table .thead .tr .th.fixed-left {
  left: 0;
}
.hlxb-table .thead .tr .th.fixed-right {
  right: 0;
}
.hlxb-table .tbody {
  --row-hover-color: #f0f0f0;
}
.hlxb-table .tbody .tr {
  height: 36px;
}
.hlxb-table .tbody .tr .td {
  padding: 0 12px 0 16px;
  border-bottom: 1px solid #f0f0f0;
  background-color: var(--row-bg-color);
  transition: background-color 0.2s ease;
}
.hlxb-table .tbody .tr .td.fixed-left,
.hlxb-table .tbody .tr .td.fixed-right {
  position: sticky;
  z-index: 1;
  background-color: var(--row-bg-color, #fff);
}
.hlxb-table .tbody .tr .td.fixed-left {
  left: 0;
}
.hlxb-table .tbody .tr .td.fixed-right {
  right: 0;
}
.hlxb-table .tbody .tr:hover .td,
.hlxb-table .tbody .tr:hover.fixed-left,
.hlxb-table .tbody .tr:hover.fixed-right {
  background-color: var(--row-hover-color);
}
.hlxb-table .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hlxb-table .load-more {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: var(--text-size);
  border-top: 1px solid #e9e9e9;
}
.hlxb-table .loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hlxb-table .loading .anticon {
  font-size: 14px;
  color: var(--theme-color, #2b63a1);
  animation: spin 1s linear infinite;
}
.hlxb-table-ping-left .fixed-left-last::after {
  position: absolute;
  top: 0;
  bottom: -1px;
  right: 0;
  width: 30px;
  transform: translateX(100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
  box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
.hlxb-table-ping-right .fixed-right-last::after {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 30px;
  transform: translateX(-100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
  box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
