.privacy-consent-modal {
	position: fixed;
	bottom: 20px;
	left: 20px;
	max-width: 350px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	z-index: 10001;
	display: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent-modal p {
	margin: 0 0 15px 0;
}
.privacy-consent-modal a {
	color: #ffd700;
	text-decoration: underline;
}
.privacy-consent-modal a:hover {
	color: #ffed4e;
}
.consent-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.consent-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	transition: all 0.3s ease;
}
.accept-btn {
	background-color: #4CAF50;
	color: white;
}
.accept-btn:hover {
	background-color: #45a049;
}
.decline-btn {
	background-color: #f44336;
	color: white;
}
.decline-btn:hover {
	background-color: #da190b;
}
@media (max-width: 480px) {
	.privacy-consent-modal {
		left: 10px;
		right: 10px;
		max-width: none;
		bottom: 10px;
	}
	.consent-buttons {
		flex-direction: column;
	}
	.consent-btn {
		width: 100%;
	}
}