.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	/*background: #2c3e50;*/
	background: rgba(44, 62, 80, 0.75);
	color: white;
	padding: 15px 20px;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	z-index: 10000;
	display: none;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.cookie-text {
	flex: 1;
	min-width: 300px;
}

.cookie-text p {
	margin: 0;
	line-height: 1.5;
	color: #ecf0f1;
}

.cookie-accept {
	padding: 10px 25px;
	background: #27ae60;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
}

.cookie-accept:hover {
	background: #219a52;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
}
.cookie-close {
	background: rgba(231, 76, 60, 0.8);
	color: white;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.cookie-close:hover {
	background: rgba(192, 57, 43, 0.9);
	transform: rotate(90deg);
	opacity: 1;
}

