.centerstate-consent-banner {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 999999;
	width: min(420px, calc(100vw - 40px));
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	color: #222;
}

.centerstate-consent-inner {
	display: block;
	padding: 22px;
}

.centerstate-consent-copy h2 {
	margin: 0 0 8px;
	font-size: 21px;
	line-height: 1.25;
}

.centerstate-consent-copy p {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.5;
}

.centerstate-consent-copy a {
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
}

.centerstate-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.centerstate-consent-actions button {
	flex: 1 1 180px;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.centerstate-consent-reject {
	background: #fff;
	border: 2px solid #333;
	color: #222;
}

.centerstate-consent-accept {
	background: #005b7f;
	border: 2px solid #005b7f;
	color: #fff;
}

.centerstate-consent-actions button:hover,
.centerstate-consent-actions button:focus {
	opacity: 0.88;
}

.centerstate-consent-actions button:focus-visible {
	outline: 3px solid #f4c542;
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.centerstate-consent-banner {
		left: 10px;
		right: 10px;
		bottom: 10px;
		width: auto;
	}

	.centerstate-consent-inner {
		padding: 18px;
	}

	.centerstate-consent-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.centerstate-consent-actions button {
		width: 100%;
	}
}