.sifency-asset-library-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.sifency-asset-library-header h2 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.25;
}

.sifency-asset-library-header p {
	max-width: 680px;
	margin: 0;
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
}

.sifency-asset-library-table-wrap {
	overflow-x: auto;
	border: 1px solid #dcdcde;
	background: #ffffff;
}

.sifency-asset-library-table {
	min-width: 1180px;
	border: 0;
}

.sifency-asset-library-table th {
	font-size: 12px;
	white-space: nowrap;
}

.sifency-asset-library-table td {
	vertical-align: middle;
}

.sifency-asset-library-table input[type="text"],
.sifency-asset-library-table input[type="url"],
.sifency-asset-library-table select {
	width: 100%;
	max-width: 100%;
	border: none;
	box-shadow: none;
	border-radius: 5px;
	background: #f1f1f1;
}

.sifency-asset-library-table .small-text {
	width: 86px;
}

.sifency-asset-library-row td:first-child,
.sifency-asset-library-row td:nth-child(8),
.sifency-asset-library-row td:last-child {
	text-align: center;
}

.sifency-asset-library-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: #f0f6fc;
	color: var(--wp-admin-theme-color);
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.sifency-asset-library-note {
	margin-top: 12px;
}

@media (max-width: 782px) {
	.sifency-asset-library-header {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Toggle Switch */
.sifency-toggle {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 20px;
}

.sifency-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.sifency-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 20px;
}

.sifency-toggle-slider:before {
	position: absolute;
	content: "";
	height: 14px;
	width: 14px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

.sifency-toggle input:checked+.sifency-toggle-slider {
	background-color: var(--wp-admin-theme-color);
}

.sifency-toggle input:focus+.sifency-toggle-slider {
	box-shadow: 0 0 1px var(--wp-admin-theme-color);
}

.sifency-toggle input:checked+.sifency-toggle-slider:before {
	transform: translateX(16px);
}