/**
 * CSS frontend minimale.
 * La classe .mm-content-protection-exclude può essere usata per escludere aree future.
 */

html.mmcp-no-select body,
html.mmcp-no-select body *:not(input):not(textarea):not(select):not(button):not([contenteditable="true"]):not(.mm-content-protection-exclude):not(.mm-content-protection-exclude *) {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html.mmcp-protect-images img:not(.mm-content-protection-exclude):not(.mm-content-protection-exclude *) {
	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: auto;
}

html.mmcp-visual-hidden body {
	filter: blur(12px);
	transition: filter 120ms ease;
}

.mmcp-privacy-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(8, 10, 18, 0.88);
	color: #fff;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	text-align: center;
}

html.mmcp-visual-hidden .mmcp-privacy-overlay {
	display: flex;
}
