.cookie-notification {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background:  rgba(0, 0, 139, 0.5);
	color: white;
	padding: 20px;
	text-align: center;
	z-index: 1000;
	display: none;
	box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cookie-text {
	flex-grow: 1;
	text-align: left;
	font-size: 15px;
	line-height: 1.5;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	transition: all 0.3s ease;
	min-width: 120px;
}

.cookie-accept {
	background: #27ae60;
	color: white;
}

.cookie-accept:hover {
	background: #219653;
	transform: translateY(-2px);
}

.cookie-settings {
	background: #3498db;
	color: white;
}

.cookie-settings:hover {
	background: #2980b9;
	transform: translateY(-2px);
}

.cookie-link {
	color: #27ae60;
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

.cookie-link:hover {
	color: #219653;
}

.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 1001;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: white;
	color: #333;
	padding: 30px;
	border-radius: 10px;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.cookie-option {
	margin: 15px 0;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 5px;
}

.cookie-option input[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.required-badge {
	background: #27ae60;
	color: white;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 12px;
	margin-left: 10px;
}

.required-note {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 15px;
	padding: 10px;
	background: #ffeaea;
	border-radius: 5px;
	border-left: 4px solid #e74c3c;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
	
	.cookie-text {
		text-align: center;
		margin-bottom: 15px;
	}
	
	.cookie-buttons {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.cookie-btn {
		min-width: 45%;
	}
}

@media (max-width: 480px) {
	.cookie-btn {
		min-width: 100%;
	}
}