/* 拖拽调整宽度手柄 */
.spec-resize-handle[data-v-2741cfe3] {
  position: absolute;
  top: 0;
  right: -3px;
  bottom: 0;
  width: 6px;
  cursor: col-resize;
  z-index: 10;
}
.spec-resize-handle[data-v-2741cfe3]:hover,
.spec-resize-handle[data-v-2741cfe3]:active {
  background-color: rgba(24, 144, 255, 0.3);
}
/* 表格容器包装器 */
.spec-table-wrapper[data-v-2741cfe3] {
  display: flex;
  flex-direction: column;
  position: relative;
}
/* 表格区域（由 a-table 内部管理滚动） */
.spec-table-scroll-area[data-v-2741cfe3] {
  flex: 1;
}
.spec-table-content[data-v-2741cfe3] {
  min-height: 100%;
}
[data-v-2741cfe3] .ant-table {
  font-size: 12px;
  table-layout: auto;
}
[data-v-2741cfe3] .ant-table-thead > tr > th,[data-v-2741cfe3] .ant-table-tbody > tr > td {
  white-space: nowrap;
  padding: 3px 3px !important;
}
[data-v-2741cfe3] .ant-input {
  padding-right: 11px !important;
}
[data-v-2741cfe3] .ant-table-thead > tr > th {
  background-color: var(--background-color-light);
  font-weight: 600;
}
[data-v-2741cfe3] .ant-table-tbody > tr:hover > td {
  background-color: var(--background-color-light);
}
/* 列设置样式 */
.column-settings-header[data-v-2741cfe3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--background-color-light);
  font-weight: 500;
}
.column-list[data-v-2741cfe3] {
  max-height: 400px;
  overflow-y: auto;
}
.column-item[data-v-2741cfe3] {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--background-color-light);
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: move;
  transition: all 0.2s;
}
.column-item[data-v-2741cfe3]:hover {
  background-color: var(--background-color-light);
  border-color: var(--border-color-base);
}
.column-item-hidden[data-v-2741cfe3] {
  opacity: 0.5;
}
.column-drag-handle[data-v-2741cfe3] {
  margin-right: 8px;
  color: var(--text-color-secondary);
  cursor: grab;
}
.column-drag-handle[data-v-2741cfe3]:active,
.column-drag-handle.active[data-v-2741cfe3] {
  cursor: grabbing;
}
