.cceu-banner, .cceu-modal, .cceu-float-manage {
	--cceu-bg: #1f2933;
	--cceu-text: #ffffff;
	--cceu-accent: #3b82f6;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
.cceu-banner *, .cceu-modal *, .cceu-float-manage * { box-sizing: border-box; }

.cceu-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: var(--cceu-bg);
	color: var(--cceu-text);
	padding: 20px;
	box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
.cceu-banner.cceu-position-bottom-right {
	left: auto;
	right: 20px;
	bottom: 20px;
	max-width: 420px;
	border-radius: 12px;
}
.cceu-banner.cceu-position-bottom-left {
	right: auto;
	left: 20px;
	bottom: 20px;
	max-width: 420px;
	border-radius: 12px;
}
.cceu-banner-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
.cceu-banner-copy { flex: 1 1 420px; }
.cceu-banner-title { font-weight: 700; margin: 0 0 4px; }
.cceu-banner-text { margin: 0; opacity: .92; }
.cceu-banner-text a { color: var(--cceu-accent); text-decoration: underline; margin-left: 6px; }
.cceu-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cceu-btn {
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.cceu-btn-primary { background: var(--cceu-accent); color: #fff; }
.cceu-btn-outline { background: transparent; color: var(--cceu-text); border-color: rgba(255,255,255,.5); }
.cceu-btn-outline:hover, .cceu-btn-primary:hover { filter: brightness(1.08); }

.cceu-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	background: rgba(0,0,0,.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.cceu-modal-inner {
	background: #fff;
	color: #1f2933;
	max-width: 560px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	border-radius: 14px;
	padding: 28px;
	position: relative;
}
.cceu-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}
.cceu-modal-categories { margin: 18px 0; }
.cceu-category-row {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-top: 1px solid #eee;
}
.cceu-category-row:first-child { border-top: none; }
.cceu-category-copy p { margin: 4px 0 0; color: #555; }
.cceu-badge {
	display: inline-block;
	font-size: 11px;
	background: #eef2ff;
	color: #3b3fbf;
	padding: 2px 8px;
	border-radius: 999px;
	margin-left: 8px;
}
.cceu-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cceu-modal .cceu-btn-outline { color: #1f2933; border-color: #ccc; }

.cceu-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; }
.cceu-switch input { opacity: 0; width: 0; height: 0; }
.cceu-slider {
	position: absolute; cursor: pointer; inset: 0;
	background: #ccc; transition: .2s; border-radius: 999px;
}
.cceu-slider::before {
	position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
	background: #fff; transition: .2s; border-radius: 50%;
}
.cceu-switch input:checked + .cceu-slider { background: var(--cceu-accent); }
.cceu-switch input:checked + .cceu-slider::before { transform: translateX(18px); }
.cceu-switch input:disabled + .cceu-slider { opacity: .6; cursor: not-allowed; }

.cceu-float-manage {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 999998;
	background: var(--cceu-bg);
	color: var(--cceu-text);
	border: none;
	border-radius: 999px;
	padding: 10px 16px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.cceu-cookie-table { width: 100%; border-collapse: collapse; }
.cceu-cookie-table th, .cceu-cookie-table td {
	text-align: left; padding: 8px 10px; border: 1px solid #e2e2e2; font-size: 14px;
}
.cceu-cookie-table th { background: #f7f7f7; }
