.ccm-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	max-width: 400px;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	display: none;
}

.ccm-banner-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ccm-banner-text {
	margin-bottom: 5px;
}

.ccm-banner-buttons {
	display: flex;
	gap: 10px;
}

.ccm-button {
	padding: 10px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	font-size: 13px;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

.ccm-button:hover {
	opacity: 0.9;
}

@media (max-width: 600px) {
	.ccm-banner {
		bottom: 0;
		right: 0;
		left: 0;
		max-width: 100%;
		border-radius: 12px 12px 0 0;
	}
	.ccm-banner-buttons {
		flex-direction: column;
	}
}
