

.ag-header-cell {
	border-right: 1px solid var(--neutral-300);
}
/* .ag-header-cell-resize:after {
	height: 100% !important;
	left: 4px !important;
	width: 1px !important;
	top: 0 !important;
} */

.ag-header-cell-resize {
	right: -4px;
}

.ag-root-wrapper {
	border: none;
}

/* Fixed-width AG Grid selection (checkbox) column */
.ag-selection-col-32.ag-cell,
.ag-selection-col-32.ag-header-cell {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.ag-selection-col-32 .ag-selection-checkbox,
.ag-selection-col-32 .ag-header-select-all {
	margin: 0 auto;
}

/* cube-creator-cell */
.container.btn-text {
	margin-left: auto;
	all: unset;
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	box-shadow: none;
	outline: none;
}
.creator-cell {
	span {
		display: flex;
		margin-right: auto;
	}
	.ui-icon {
		height: 16px;
	}
	.attention  {
		height: 20px !important;
		color: var(--warning-600);
		margin-left: auto;
	}
}

/* Editable cell "edit" icon (ag-grid-table widget) */
.list-ag-cell {
	position: relative;
	width: 100%;
	min-height: 100%;
	padding-right: 18px;
	box-sizing: border-box;
}
.list-ag-cell.list-ag-cell--editable .ag-grid-cell-edit-icon {
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	color: var(--neutral-400, #9aa0b4);
}
.ag-row:hover .list-ag-cell--editable .ag-grid-cell-edit-icon,
.ag-cell:hover .list-ag-cell--editable .ag-grid-cell-edit-icon {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	cursor: pointer;
	color: var(--neutral-600, #454a5f);
}
.ag-row.ui-selected:not(:hover) .list-ag-cell--editable .ag-grid-cell-edit-icon,
.ag-row.ag-row-selected:not(:hover) .list-ag-cell--editable .ag-grid-cell-edit-icon {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.ag-row.ui-selected {
	border-top: 1px solid var(--primary-500);
	border-bottom: 1px solid var(--primary-500);
	background: var(--secondary-light-skyey) !important;
}
