#privacy-consent-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.privacy-consent-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.privacy-consent-box {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	max-width: 500px;
	width: 90%;
	padding: 30px;
	position: relative;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	gap: 20px;
	animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.privacy-consent-title {
	font-size: 1.8em;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}
.privacy-consent-description {
	font-size: 0.95em;
	line-height: 1.6;
	color: #666;
	margin-bottom: 25px;
	text-align: center;
}
.privacy-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 20px;
}
.privacy-consent-btn {
	padding: 12px 25px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1em;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
	flex-grow: 1;
	min-width: 140px;
	max-width: 100%;
}
.privacy-consent-accept-all {
	background-color: #4CAF50;
	color: #ffffff;
}
.privacy-consent-accept-all:hover {
	background-color: #45a049;
	transform: translateY(-2px);
}
.privacy-consent-reject-all {
	background-color: #f44336;
	color: #ffffff;
}
.privacy-consent-reject-all:hover {
	background-color: #da3329;
	transform: translateY(-2px);
}
.privacy-consent-manage-btn, .privacy-consent-back-btn {
	background-color: #e0e0e0;
	color: #333;
}
.privacy-consent-manage-btn:hover, .privacy-consent-back-btn:hover {
	background-color: #d5d5d5;
	transform: translateY(-2px);
}
.privacy-consent-save-settings {
	background-color: #2196F3;
	color: #ffffff;
}
.privacy-consent-save-settings:hover {
	background-color: #1976D2;
	transform: translateY(-2px);
}
.privacy-consent-policy-link {
	text-align: center;
	font-size: 0.85em;
}
.privacy-consent-policy-link a {
	color: #2196F3;
	text-decoration: none;
	transition: color 0.2s ease;
}
.privacy-consent-policy-link a:hover {
	color: #1976D2;
	text-decoration: underline;
}
.privacy-consent-settings-view {
	display: none;
	flex-direction: column;
	gap: 15px;
}
.privacy-consent-category {
	background-color: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
	border: 1px solid #eee;
}
.privacy-consent-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.privacy-consent-category-header h3 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
}
.privacy-consent-toggle {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.privacy-consent-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}
.privacy-consent-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 25px;
}
.privacy-consent-slider:before {
	position: absolute;
	content: "";
	height: 17px;
	width: 17px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
input:checked + .privacy-consent-slider {
	background-color: #4CAF50;
}
input:focus + .privacy-consent-slider {
	box-shadow: 0 0 1px #4CAF50;
}
input:checked + .privacy-consent-slider:before {
	transform: translateX(20px);
}
input:disabled + .privacy-consent-slider {
	opacity: 0.6;
	cursor: not-allowed;
}
input:disabled:checked + .privacy-consent-slider {
	background-color: #8BC34A;
}
.privacy-consent-settings-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}
@media (max-width: 600px) {
	.privacy-consent-box {
		padding: 20px;
		width: 95%;
	}
	.privacy-consent-title {
		font-size: 1.5em;
	}
	.privacy-consent-description {
		font-size: 0.9em;
	}
	.privacy-consent-btn {
		padding: 10px 20px;
		font-size: 0.9em;
		min-width: unset;
		width: 100%;
	}
	.privacy-consent-actions, .privacy-consent-settings-actions {
		flex-direction: column;
	}
}
@media (min-width: 601px) and (max-width: 900px) {
	.privacy-consent-box {
		max-width: 600px;
	}
}