.nova-table {
  --el-table-header-bg: #f0f4fa;
  box-sizing: border-box;
}
.nova-table__filter {
  margin-bottom: 8px;
}
.nova-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
.nova-table__header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nova-table__header-right .el-button.is-circle {
  border-radius: var(--el-border-radius-base);
}
.nova-table__header-right .el-icon {
  font-size: 16px;
}
.nova-table :deep(.el-table__header-wrapper th) {
  background-color: var(--el-table-header-bg);
}
.nova-table__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}
.nova-table__footer--selections {
  display: inline-flex;
  align-items: center;
  font-size: var(--el-font-size-base);
}
.nova-table__footer--selections .selections-warning {
  margin-right: 4px;
  color: var(--el-color-primary);
}
.nova-table__footer--selections .selections-count {
  margin: 0 4px;
  color: var(--el-color-primary);
}
.nova-table .cursor-move {
  cursor: move;
}
.nova-table .table-empty {
  line-height: 22px;
}
.nova-table .table-empty .el-empty__description {
  margin-top: 0;
}
.nova-table-card .nova-table__filter {
  padding: 16px 24px;
  border-radius: 4px;
  background: #fff;
}
.nova-table-card .nova-table__main {
  padding: 16px 24px;
  border-radius: 4px;
  background: #fff;
}
.nova-table-full-height {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.nova-table-full-height .nova-table__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.nova-table-full-height .nova-table__main .el-table {
  flex: 1;
}

.nova-table-draggable-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-radius: 4px;
  cursor: move;
}
.nova-table-draggable-item:hover {
  background: #f2f2f2;
}
.nova-table-draggable-item.draging {
  background: transparent;
}
.nova-table-draggable-item.unmover {
  cursor: default;
}
.nova-table-draggable-item.unmover:hover {
  background: transparent;
}
.nova-table-draggable-fixed {
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-right: 8px;
}

.nova-table-setting-popover.el-popover.el-popper {
  padding: 16px 8px;
}
.nova-table-setting-popover__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--el-font-size-base);
  color: var(--el-text-color-primary);
  line-height: 20px;
  font-weight: 600;
  margin: 0 8px;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e6e6e6;
}
.nova-table-setting-popover__title span {
  color: var(--el-text-color-secondary);
  font-weight: 400;
}
.nova-table-setting-popover__title.unchoose-title {
  margin-top: 12px;
}

.nova-draggable-tips {
  width: 10px;
}
.nova-draggable-tips .nova-draggable-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2px;
}
.nova-draggable-tips .nova-draggable-row:last-child {
  margin-bottom: 0;
}
.nova-draggable-tips .nova-draggable-row .nova-draggable-col {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #959595;
}