/* Diffreng — Icon Block: Front- & Editor-Styles */

.diffreng-icon-block-wrap {
	width: 100%;
}

.diffreng-icon-block {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-decoration: none;
}
.diffreng-icon-block svg {
	display: block;
}

.debs-icon-hinweis {
	color: #8a8a8a;
	font-style: italic;
}

/* ── Editor: Icon-Picker-Grid ─────────────────────────────────────────── */
.debs-icon-picker-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
	gap: 6px;
	max-height: 280px;
	overflow-y: auto;
	padding: 2px;
}
.debs-icon-picker-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 6px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}
.debs-icon-picker-item svg {
	width: 100%;
	height: 100%;
}
.debs-icon-picker-item.is-active {
	border-color: #B5695A;
	box-shadow: 0 0 0 2px rgba(181, 105, 90, 0.25);
}
.debs-icon-empty-hint {
	font-size: 12px;
	color: #757575;
}

.debs-icon-bg-hint {
	font-size: 12px;
	color: #757575;
	margin: 4px 0 12px;
}

/* ── Popover: Link & Ausrichtung ─────────────────────────────────────── */
.debs-icon-popover-content {
	padding: 16px;
	min-width: 260px;
}
.debs-icon-popover-label {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #757575;
}
.debs-icon-popover-content .debs-icon-popover-label:not(:first-child) {
	margin-top: 16px;
}
.debs-icon-align-buttons {
	display: flex;
	gap: 4px;
}
