.cookie-consent-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-consent-modal-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}
.cookie-consent-modal-content {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 90%;
	max-width: 500px;
	padding: 30px;
	box-sizing: border-box;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s ease;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
}
.cookie-consent-modal-overlay.is-visible .cookie-consent-modal-content {
	transform: translateY(0);
}
.cookie-consent-modal-content h2 {
	font-size: 1.8em;
	margin-top: 0;
	margin-bottom: 20px;
	color: #222;
	text-align: center;
}
.cookie-consent-modal-content p {
	font-size: 0.95em;
	line-height: 1.6;
	margin-bottom: 20px;
}
.cookie-consent-modal-content a {
	color: #007bff;
	text-decoration: none;
}
.cookie-consent-modal-content a:hover {
	text-decoration: underline;
}
.cookie-consent-modal-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 25px;
	justify-content: center;
}
.cookie-consent-modal-buttons button {
	flex-grow: 1;
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	font-weight: 600;
	max-width: 180px;
}
.cookie-consent-modal-buttons button.accept-all {
	background-color: #007bff;
	color: #ffffff;
}
.cookie-consent-modal-buttons button.accept-all:hover {
	background-color: #0056b3;
	transform: translateY(-1px);
}
.cookie-consent-modal-buttons button.reject-all {
	background-color: #dc3545;
	color: #ffffff;
}
.cookie-consent-modal-buttons button.reject-all:hover {
	background-color: #c82333;
	transform: translateY(-1px);
}
.cookie-consent-modal-buttons button.manage-settings,
.cookie-consent-modal-buttons button.save-preferences,
.cookie-consent-modal-buttons button.back-button {
	background-color: #e9ecef;
	color: #495057;
	border: 1px solid #ced4da;
}
.cookie-consent-modal-buttons button.manage-settings:hover,
.cookie-consent-modal-buttons button.save-preferences:hover,
.cookie-consent-modal-buttons button.back-button:hover {
	background-color: #d6d9dc;
	transform: translateY(-1px);
}
.cookie-settings-panel {
	display: none;
	margin-top: 20px;
}
.cookie-settings-panel.is-visible {
	display: block;
}
.cookie-setting-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.cookie-setting-item:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}
.cookie-setting-item div {
	flex-grow: 1;
	padding-right: 15px;
}
.cookie-setting-item h3 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
}
.cookie-setting-item p {
	font-size: 0.85em;
	color: #666;
	margin-top: 5px;
	margin-bottom: 0;
}
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 28px;
}
.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;
	border-radius: 28px;
}
.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
input:checked + .slider {
	background-color: #007bff;
}
input:focus + .slider {
	box-shadow: 0 0 1px #007bff;
}
input:checked + .slider:before {
	transform: translateX(20px);
}
input:disabled + .slider {
	background-color: #e0e0e0;
	cursor: not-allowed;
}
input:disabled + .slider:before {
	background-color: #b0b0b0;
}
@media (max-width: 768px) {
	.cookie-consent-modal-content {
		padding: 20px;
		width: 95%;
	}
	.cookie-consent-modal-content h2 {
		font-size: 1.5em;
	}
	.cookie-consent-modal-content p {
		font-size: 0.9em;
	}
	.cookie-consent-modal-buttons button {
		flex-basis: 100%;
		max-width: none;
	}
}
@media (max-width: 480px) {
	.cookie-consent-modal-content {
		padding: 15px;
	}
	.cookie-consent-modal-content h2 {
		font-size: 1.3em;
	}
	.cookie-consent-modal-content p {
		font-size: 0.85em;
	}
}