/* Stubbins Campaign Manager — consent banner */
/* BUGFIX v1.4.0: display:flex below was defeating the [hidden] attribute (UA
   stylesheet rules lose to author rules), so the banner never dismissed on
   Okay / × / outside click. The hidden attribute must always win: */
.scm-consent[hidden] { display: none !important; }
.scm-consent {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 99999;
	display: flex;
	justify-content: center;
	padding: 16px;
	pointer-events: none;
}
.scm-consent__box {
	pointer-events: auto;
	position: relative;
	max-width: 560px;
	width: 100%;
	background: #ffffff;
	color: #1f2937;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	padding: 18px 44px 18px 20px;
	font-size: 14px;
	line-height: 1.5;
}
.scm-consent__text { margin: 0 0 12px; }
.scm-consent__text a { color: #1d4ed8; text-decoration: underline; }
.scm-consent__ok {
	background: #1d4ed8;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.scm-consent__ok:hover { background: #1e40af; }
.scm-consent__close {
	position: absolute;
	top: 8px;
	right: 10px;
	background: transparent;
	border: 0;
	font-size: 22px;
	line-height: 1;
	color: #6b7280;
	cursor: pointer;
}
.scm-consent__close:hover { color: #111827; }
