#cookie-consent-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.cookie-consent-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1001;
}
.cookie-consent-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1002;
	display: flex;
	flex-direction: column;
}
.cookie-consent-header {
	padding: 25px 30px;
	border-bottom: 1px solid #eeeeee;
	background-color: #f8f8f8;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.cookie-consent-header h2 {
	margin: 0;
	color: #333333;
	font-size: 24px;
	font-weight: 600;
}
.cookie-consent-body {
	padding: 25px 30px;
	color: #555555;
	font-size: 15px;
	line-height: 1.6;
}
.cookie-consent-body p {
	margin-top: 0;
	margin-bottom: 20px;
}
.cookie-preferences .cookie-category {
	margin-bottom: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	background-color: #fdfdfd;
}
.cookie-preferences .category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.cookie-preferences .category-header h3 {
	margin: 0;
	font-size: 17px;
	color: #444444;
	font-weight: 500;
}
.cookie-preferences .category-description {
	font-size: 13px;
	color: #777777;
	margin-bottom: 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;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #4CAF50;
}
input:focus + .slider {
	box-shadow: 0 0 1px #4CAF50;
}
input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}
.slider.round {
	border-radius: 28px;
}
.slider.round:before {
	border-radius: 50%;
}
input:disabled + .slider {
	opacity: 0.6;
	cursor: not-allowed;
}
.cookie-consent-footer {
	padding: 20px 30px;
	border-top: 1px solid #eeeeee;
	background-color: #f8f8f8;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}
.cookie-accept-all {
	background-color: #4CAF50;
	color: white;
}
.cookie-accept-all:hover {
	background-color: #45a049;
}
.cookie-decline {
	background-color: #f44336;
	color: white;
}
.cookie-decline:hover {
	background-color: #da190b;
}
.cookie-save {
	background-color: #007bff;
	color: white;
}
.cookie-save:hover {
	background-color: #0056b3;
}
.privacy-link {
	margin-right: auto;
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
}
.privacy-link:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.cookie-consent-box {
		width: 95%;
		max-width: none;
		max-height: 95vh;
	}
	.cookie-consent-header,
	.cookie-consent-body,
	.cookie-consent-footer {
		padding: 15px 20px;
	}
	.cookie-consent-header h2 {
		font-size: 20px;
	}
	.cookie-btn {
		width: 100%;
		text-align: center;
	}
	.cookie-consent-footer {
		flex-direction: column;
		align-items: stretch;
	}
	.privacy-link {
		margin-right: 0;
		margin-bottom: 10px;
		text-align: center;
	}
}