.tasks.layouts.table .task-checkbox {
	width: 14px;
	height: 14px;
	border: 1.5px solid var(--border);
	border-radius: 3px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg);
	flex-shrink: 0;
	position: relative;
}

.tasks.layouts.table .task-checkbox .material-symbols-rounded {
	display: none;
}

.tasks.layouts.table .task-checkbox:hover {
	border-color: var(--text);
	opacity: 0.7;
	background-color: var(--bs-secondary);
}

.tasks.layouts.table .task-checkbox.checked {
	background-color: var(--text);
	border-color: var(--text);
}

.tasks.layouts.table .task-checkbox.checked:not(.indeterminate) .material-symbols-rounded.check-icon {
	display: inline-block;
	color: white;
	font-size: 14px;
	line-height: 1;
	font-weight: normal;
}

.tasks.layouts.table .task-checkbox.indeterminate {
	background-color: var(--text);
	border-color: var(--text);
}

.tasks.layouts.table .task-checkbox.indeterminate .material-symbols-rounded.check-icon {
	display: none !important;
}

.tasks.layouts.table .task-checkbox.indeterminate .material-symbols-rounded.indeterminate-icon {
	display: inline-block;
	color: white;
	font-size: 14px;
	line-height: 1;
	font-weight: normal;
}

