#scc-banner,
.scc-banner {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
	transition: transform .35s ease, opacity .35s ease;
}

#scc-banner[hidden] {
	display: none !important;
}

#scc-banner.scc-bottom,
.scc-banner.scc-bottom {
	bottom: 0;
	top: auto;
}

#scc-banner.scc-top,
.scc-banner.scc-top {
	top: 0;
	bottom: auto;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#scc-banner.scc-theme-light,
.scc-banner.scc-theme-light {
	background: #ffffff;
	color: #1e293b;
	border-top: 1px solid #e2e8f0;
}

#scc-banner.scc-theme-dark,
.scc-banner.scc-theme-dark {
	background: #1e293b;
	color: #f8fafc;
	border-top: 1px solid #334155;
}

.scc-message-wrap {
	flex: 1 1 320px;
}

.scc-message {
	margin: 0;
}

.scc-message a {
	color: inherit;
	text-decoration: underline;
}

.scc-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.scc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s ease, opacity .15s ease;
}

.scc-btn-accept:hover {
	opacity: .9;
}

.scc-btn-reject {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.scc-theme-light .scc-btn-reject {
	color: #374151;
	border-color: #d1d5db;
}

.scc-theme-dark .scc-btn-reject {
	color: #cbd5e1;
	border-color: #475569;
}

@media (max-width: 640px) {
	#scc-banner,
	.scc-banner {
		padding: 14px 16px;
	}

	.scc-actions {
		width: 100%;
	}

	.scc-btn {
		flex: 1 1 auto;
	}
}
