#site-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: #1f2a24;
	color: #f4f4f2;
	font-family: Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	box-shadow: 0 -2px 12px rgba(0,0,0,.25);
	display: none;
}
#site-consent-banner.is-visible { display: block; }
#site-consent-banner .scm-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}
#site-consent-banner .scm-text { flex: 1 1 420px; }
#site-consent-banner .scm-text a { color: #9fd6a1; text-decoration: underline; }
#site-consent-banner .scm-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
#site-consent-banner button {
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
}
#site-consent-banner .scm-btn-accept { background: #3f8f4e; color: #fff; }
#site-consent-banner .scm-btn-reject { background: transparent; color: #f4f4f2; border-color: #6a776f; }
#site-consent-banner .scm-btn-settings { background: transparent; color: #f4f4f2; border-color: #6a776f; }

#site-consent-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: none;
	background: rgba(0,0,0,.5);
	align-items: center;
	justify-content: center;
}
#site-consent-modal.is-visible { display: flex; }
#site-consent-modal .scm-modal-box {
	background: #fff;
	color: #222;
	max-width: 520px;
	width: 92%;
	border-radius: 6px;
	padding: 24px;
	font-family: Roboto, Arial, sans-serif;
	max-height: 85vh;
	overflow-y: auto;
}
#site-consent-modal h2 { margin-top: 0; font-size: 20px; }
#site-consent-modal .scm-cat {
	border-top: 1px solid #e2e2e2;
	padding: 14px 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}
#site-consent-modal .scm-cat-title { font-weight: 600; }
#site-consent-modal .scm-cat-desc { font-size: 13px; color: #555; margin-top: 4px; }
#site-consent-modal .scm-modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}
#site-consent-modal .scm-switch {
	position: relative;
	width: 42px;
	height: 24px;
	flex: none;
}
#site-consent-modal .scm-switch input { opacity: 0; width: 0; height: 0; }
#site-consent-modal .scm-switch .scm-slider {
	position: absolute; inset: 0; background: #ccc; border-radius: 24px; transition: .2s;
}
#site-consent-modal .scm-switch .scm-slider:before {
	content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px;
	background: #fff; border-radius: 50%; transition: .2s;
}
#site-consent-modal .scm-switch input:checked + .scm-slider { background: #3f8f4e; }
#site-consent-modal .scm-switch input:checked + .scm-slider:before { transform: translateX(18px); }
#site-consent-modal .scm-switch input:disabled + .scm-slider { opacity: .5; }

.scm-blocked-embed {
	border: 1px dashed #b9c2bd;
	border-radius: 6px;
	padding: 20px;
	text-align: center;
	font-family: Roboto, Arial, sans-serif;
	font-size: 14px;
	background: #f6f8f7;
}
.scm-blocked-embed button {
	margin-top: 10px;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	background: #3f8f4e;
	color: #fff;
	font-weight: 600;
}

#site-consent-reopen {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 999998;
	background: #1f2a24;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	cursor: pointer;
	font-size: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
