.aitk-post-types-settings {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	padding: 20px;
	margin-top: 20px;
}

.aitk-post-types-settings h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
}

.aitk-post-type-toggles {
	margin-top: 20px;
}

.aitk-post-type-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #f0f0f1;
	transition: background-color 0.2s ease;
}

.aitk-post-type-row:hover {
	background-color: #f6f7f7;
}

.aitk-post-type-row:last-child {
	border-bottom: none;
}

.aitk-post-type-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.aitk-post-type-label {
	font-size: 14px;
	color: #1d2327;
}

.aitk-post-type-slug {
	font-size: 12px;
	color: #646970;
	font-family: monospace;
}

.aitk-toggle-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.aitk-toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 26px;
	margin: 0;
}

.aitk-toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.aitk-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #8c8f94;
	transition: 0.3s;
	border-radius: 26px;
}

.aitk-toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
}

.aitk-toggle-switch input:checked + .aitk-toggle-slider {
	background-color: #2271b1;
}

.aitk-toggle-switch input:focus + .aitk-toggle-slider {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2271b1;
}

.aitk-toggle-switch input:checked + .aitk-toggle-slider:before {
	transform: translateX(24px);
}

.aitk-toggle-status {
	font-size: 13px;
	color: #646970;
	min-width: 60px;
	font-weight: 500;
}

.aitk-post-type-row:hover .aitk-toggle-status {
	color: #1d2327;
}
