#cookie-consent-modal {
	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;
}
.cookie-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}
.cookie-content-box {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	max-width: 500px;
	width: 90%;
	padding: 30px;
	position: relative;
	z-index: 1001;
	color: #333;
	animation: fadeInScale 0.3s ease-out forwards;
	max-height: 90vh;
	overflow-y: auto;
}
@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.cookie-title {
	font-size: 1.8em;
	color: #2c3e50;
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
}
.cookie-description {
	font-size: 0.95em;
	line-height: 1.6;
	color: #555;
	margin-bottom: 25px;
	text-align: center;
}
.cookie-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 25px;
}
.cookie-button {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1em;
	font-weight: 600;
	transition: all 0.2s ease;
	text-align: center;
}
.cookie-accept-all {
	background-color: #4CAF50;
	color: #ffffff;
}
.cookie-accept-all:hover {
	background-color: #45a049;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
.cookie-decline-all {
	background-color: #f44336;
	color: #ffffff;
}
.cookie-decline-all:hover {
	background-color: #da190b;
	box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}
.cookie-manage-settings, .cookie-save-preferences {
	background-color: #007bff;
	color: #ffffff;
}
.cookie-manage-settings:hover, .cookie-save-preferences:hover {
	background-color: #0056b3;
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}
.cookie-category {
	background-color: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
}
.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.cookie-category-header h3 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
}
.cookie-category-description {
	font-size: 0.85em;
	color: #666;
	line-height: 1.5;
	margin-bottom: 8px;
}
.cookie-always-active {
	font-size: 0.8em;
	color: #888;
	font-style: italic;
}
.cookie-toggle {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 24px;
}
.cookie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}
.cookie-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}
.cookie-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.cookie-toggle input:checked + .cookie-slider {
	background-color: #4CAF50;
}
.cookie-toggle input:checked + .cookie-slider:before {
	transform: translateX(16px);
}
.cookie-toggle input:disabled + .cookie-slider {
	background-color: #a0a0a0;
	cursor: not-allowed;
}
.cookie-toggle input:disabled + .cookie-slider:before {
	background-color: #e0e0e0;
}
@media (max-width: 768px) {
	.cookie-content-box {
		width: 95%;
		padding: 20px;
	}
	.cookie-title {
		font-size: 1.5em;
	}
	.cookie-description {
		font-size: 0.9em;
	}
	.cookie-button {
		padding: 10px 15px;
		font-size: 0.95em;
	}
	.cookie-category-header h3 {
		font-size: 1em;
	}
	.cookie-category-description {
		font-size: 0.8em;
	}
}
@media (max-width: 480px) {
	.cookie-content-box {
		border-radius: 8px;
		padding: 15px;
	}
	.cookie-title {
		font-size: 1.3em;
	}
	.cookie-description {
		font-size: 0.85em;
	}
	.cookie-actions {
		gap: 10px;
	}
	.cookie-button {
		font-size: 0.9em;
	}
}