.user-consent-modal-container {
	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', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}
.user-consent-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
}
.user-consent-box {
	background: linear-gradient(135deg, #e0f2f7 0%, #d1e9f1 100%);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	width: 90%;
	max-width: 600px;
	padding: 30px;
	position: relative;
	z-index: 1001;
	overflow: hidden;
	transform: scale(0.95);
	opacity: 0;
	animation: fadeInScale 0.3s ease-out forwards;
}
@keyframes fadeInScale {
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.user-consent-box h2 {
	font-size: 1.8em;
	color: #2c3e50;
	margin-bottom: 15px;
	text-align: center;
}
.user-consent-box p {
	font-size: 0.95em;
	color: #555;
	margin-bottom: 20px;
	text-align: center;
}
.user-consent-banner p {
	text-align: left;
}
.user-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 25px;
}
.user-consent-button {
	padding: 12px 25px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	flex-grow: 1;
	max-width: 180px;
}
.user-consent-primary {
	background-color: #4CAF50;
	color: #fff;
	box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}
.user-consent-primary:hover {
	background-color: #45a049;
	box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}
.user-consent-secondary {
	background-color: #f44336;
	color: #fff;
	box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}
.user-consent-secondary:hover {
	background-color: #da190b;
	box-shadow: 0 6px 15px rgba(244, 67, 54, 0.4);
}
.user-consent-tertiary {
	background-color: #007bff;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.user-consent-tertiary:hover {
	background-color: #0056b3;
	box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}
.user-consent-policy-link {
	text-align: center;
	margin-top: 20px;
	font-size: 0.85em;
}
.user-consent-policy-link a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}
.user-consent-policy-link a:hover {
	color: #0056b3;
	text-decoration: underline;
}
.user-consent-settings h2 {
	margin-bottom: 25px;
}
.user-consent-settings-list {
	max-height: 300px;
	overflow-y: auto;
	padding-right: 10px;
	margin-bottom: 20px;
}
.user-consent-settings-list::-webkit-scrollbar {
	width: 8px;
}
.user-consent-settings-list::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}
.user-consent-settings-list::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}
.user-consent-settings-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}
.user-consent-setting-item {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px 20px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.user-consent-setting-item:last-child {
	margin-bottom: 0;
}
.user-consent-setting-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.user-consent-setting-header h3 {
	font-size: 1.1em;
	color: #2c3e50;
	margin: 0;
}
.user-consent-setting-item p {
	font-size: 0.85em;
	color: #666;
	margin-bottom: 10px;
	text-align: left;
}
.user-consent-always-active {
	font-size: 0.8em;
	color: #777;
	background-color: #e9ecef;
	padding: 4px 8px;
	border-radius: 5px;
	display: inline-block;
}
.user-consent-toggle {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.user-consent-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}
.user-consent-toggle label {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 25px;
}
.user-consent-toggle label:before {
	position: absolute;
	content: "";
	height: 17px;
	width: 17px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.user-consent-toggle input:checked + label {
	background-color: #4CAF50;
}
.user-consent-toggle input:focus + label {
	box-shadow: 0 0 1px #4CAF50;
}
.user-consent-toggle input:checked + label:before {
	transform: translateX(20px);
}
.user-consent-toggle-disabled label {
	background-color: #a0a0a0;
	cursor: not-allowed;
}
.user-consent-toggle-disabled input:checked + label {
	background-color: #777;
}
.user-consent-settings-actions {
	margin-top: 30px;
	justify-content: space-between;
}
.user-consent-settings-actions .user-consent-button {
	max-width: none;
	flex-grow: 1;
}
@media (min-width: 768px) {
	.user-consent-box {
		padding: 40px;
	}
	.user-consent-box h2 {
		font-size: 2em;
	}
	.user-consent-banner p {
		text-align: center;
	}
	.user-consent-actions {
		flex-wrap: nowrap;
	}
	.user-consent-button {
		flex-grow: 0;
		min-width: 150px;
	}
	.user-consent-settings-actions .user-consent-button {
		max-width: 200px;
	}
}
@media (max-width: 480px) {
	.user-consent-box {
		padding: 20px;
		width: 95%;
	}
	.user-consent-box h2 {
		font-size: 1.5em;
	}
	.user-consent-box p {
		font-size: 0.9em;
	}
	.user-consent-button {
		font-size: 0.9em;
		padding: 10px 15px;
	}
	.user-consent-settings-list {
		max-height: 250px;
	}
	.user-consent-setting-header h3 {
		font-size: 1em;
	}
	.user-consent-setting-item p {
		font-size: 0.8em;
	}
}