.ls-id-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: #1e2761;
	color: #ffffff;
	box-shadow: 0 -2px 12px rgba( 0, 0, 0, 0.15 );
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.ls-id-consent-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ls-id-consent-message {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	flex: 1 1 320px;
}

.ls-id-consent-message a {
	color: #5eead4;
	text-decoration: underline;
	margin-left: 6px;
}

.ls-id-consent-actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.ls-id-consent-btn {
	border: none;
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.ls-id-consent-btn:hover {
	opacity: 0.85;
}

.ls-id-consent-accept {
	background: #0d9488;
	color: #ffffff;
}

.ls-id-consent-decline {
	background: transparent;
	color: #cadcfc;
	border: 1px solid #3c4a8c;
}

@media ( max-width: 600px ) {
	.ls-id-consent-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.ls-id-consent-actions {
		width: 100%;
	}
	.ls-id-consent-btn {
		flex: 1;
	}
}
