.user-consent-popup, .user-consent-settings {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	animation: fadeIn 0.3s ease-out;
}
.user-consent-popup .modal-content, .user-consent-settings .modal-content {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	padding: 30px;
	max-width: 500px;
	width: 90%;
	margin: 20px;
	position: relative;
	color: #333;
	animation: slideIn 0.3s ease-out;
	max-height: 90vh;
	overflow-y: auto;
}
@media (max-width: 768px) {
	.user-consent-popup .modal-content, .user-consent-settings .modal-content {
		padding: 20px;
		margin: 10px;
		border-radius: 8px;
	}
	.user-consent-popup .modal-title, .user-consent-settings .modal-title {
		font-size: 1.3em;
	}
	.user-consent-popup .modal-description, .user-consent-settings .setting-description {
		font-size: 0.9em;
	}
}
.modal-title {
	font-size: 1.6em;
	color: #2c3e50;
	margin-bottom: 15px;
	text-align: center;
}
.modal-description, .setting-description {
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #555;
}
.privacy-link {
	color: #007bff;
	text-decoration: none;
	font-weight: 500;
}
.privacy-link:hover {
	text-decoration: underline;
}
.button-group {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 20px;
	flex-wrap: wrap;
}
.btn {
	padding: 12px 20px;
	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;
	text-align: center;
}
.primary-btn {
	background-color: #007bff;
	color: #fff;
}
.primary-btn:hover {
	background-color: #0056b3;
	transform: translateY(-1px);
}
.secondary-btn {
	background-color: #e9ecef;
	color: #333;
}
.secondary-btn:hover {
	background-color: #d6d9dc;
	transform: translateY(-1px);
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.close-btn {
	background: none;
	border: none;
	font-size: 1.2em;
	cursor: pointer;
	color: #888;
	padding: 5px;
	transition: color 0.2s ease;
}
.close-btn:hover {
	color: #333;
}
.setting-item {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	border: 1px solid #e0e0e0;
}
.setting-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.setting-item h3 {
	font-size: 1.1em;
	color: #2c3e50;
	margin: 0;
}
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 28px;
}
.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
}
input:checked + .slider {
	background-color: #007bff;
}
input:focus + .slider {
	box-shadow: 0 0 1px #007bff;
}
input:checked + .slider:before {
	transform: translateX(20px);
}
.slider.round {
	border-radius: 28px;
}
.slider.round:before {
	border-radius: 50%;
}
input:disabled + .slider {
	cursor: not-allowed;
	background-color: #a0a0a0;
}
input:disabled:checked + .slider {
	background-color: #0056b3;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideIn {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
