.ccc-overlay {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	display: flex;
	justify-content: center;
	padding: 16px;
	pointer-events: none;
}

.ccc-box {
	pointer-events: auto;
	background: #ffffff;
	color: #222222;
	max-width: 640px;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	padding: 20px 24px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.ccc-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 600;
}

.ccc-text {
	margin: 0 0 14px;
}

.ccc-prefs .ccc-row {
	margin-bottom: 10px;
}

.ccc-prefs .ccc-row label {
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ccc-prefs .ccc-row p {
	margin: 2px 0 0 24px;
	color: #555555;
	font-size: 13px;
}

.ccc-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.ccc-btn {
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #cccccc;
	background: #f5f5f5;
}

.ccc-btn-primary {
	background: #1a1a1a;
	color: #ffffff;
	border-color: #1a1a1a;
}

.ccc-btn-outline {
	background: transparent;
}

@media (max-width: 480px) {
	.ccc-buttons {
		flex-direction: column;
	}
	.ccc-btn {
		width: 100%;
	}
}
