.user-consent-modal-box,.user-consent-settings-panel {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 400px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	padding: 25px;
	z-index: 1000;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	display: none;
	flex-direction: column;
	gap: 15px;
	border: 1px solid #eee;
}
.user-consent-modal-box h2,.user-consent-settings-panel h3 {
	margin-top: 0;
	font-size: 1.5em;
	color: #2575fc;
}
.user-consent-modal-box p,.user-consent-settings-panel p {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 0;
}
.user-consent-actions,.user-consent-settings-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}
.user-consent-actions button,.user-consent-settings-footer button {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.user-consent-actions button:first-child {
	background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
	color: #fff;
}
.user-consent-actions button:first-child:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}
.user-consent-actions button:nth-child(2) {
	background-color: #e0e0e0;
	color: #333;
}
.user-consent-actions button:nth-child(2):hover {
	background-color: #d0d0d0;
}
.user-consent-actions button:last-child {
	background-color: #f0f0f0;
	color: #555;
	border: 1px solid #ddd;
}
.user-consent-actions button:last-child:hover {
	background-color: #e0e0e0;
}
.user-consent-settings-footer button {
	background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
	color: #fff;
}
.user-consent-settings-footer button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}
.user-consent-privacy-link {
	text-align: center;
	margin-top: 10px;
}
.user-consent-privacy-link a {
	color: #2575fc;
	text-decoration: none;
	font-size: 0.85em;
}
.user-consent-privacy-link a:hover {
	text-decoration: underline;
}
.user-consent-setting-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f5f5f5;
}
.user-consent-setting-item:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.user-consent-setting-item h4 {
	margin: 0;
	font-size: 1.1em;
	color: #444;
}
.user-consent-setting-item p {
	font-size: 0.85em;
	color: #666;
}
.user-consent-toggle {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 24px;
	min-width: 40px;
}
.user-consent-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}
.user-consent-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}
.user-consent-slider:before {
	position: absolute;
	content: '';
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
input:checked + .user-consent-slider {
	background-color: #2575fc;
}
input:focus + .user-consent-slider {
	box-shadow: 0 0 1px #2575fc;
}
input:checked + .user-consent-slider:before {
	transform: translateX(16px);
}
input:disabled + .user-consent-slider {
	opacity: 0.6;
	cursor: not-allowed;
}
@media (max-width: 768px) {
	.user-consent-modal-box,.user-consent-settings-panel {
		bottom: 0;
		left: 0;
		right: 0;
		max-width: 100%;
		border-radius: 0;
		padding: 20px;
	}
	.user-consent-actions button {
		flex-basis: 100%;
	}
}
