/* Cookie Consent Banner Styles */
#cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #2c3e50;
	color: #ffffff;
	padding: 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	display: none;
	font-family: Arial, sans-serif;
}

#cookie-consent-banner.show {
	display: block;
	animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

#cookie-consent-banner .cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

#cookie-consent-banner .cookie-text {
	flex: 1;
	min-width: 250px;
	font-size: 14px;
	line-height: 1.5;
}

#cookie-consent-banner .cookie-text a {
	color: #3498db;
	text-decoration: underline;
}

#cookie-consent-banner .cookie-text a:hover {
	color: #5dade2;
}

#cookie-consent-banner .cookie-button {
	background-color: #00853c;
	color: #ffffff;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}

#cookie-consent-banner .cookie-button:hover {
	background-color: #006b2e;
}

#cookie-consent-banner .cookie-button:active {
	transform: scale(0.98);
}

/* Mobile responsive */
@media (max-width: 768px) {
	#cookie-consent-banner {
		padding: 15px;
	}

	#cookie-consent-banner .cookie-content {
		flex-direction: column;
		text-align: center;
	}

	#cookie-consent-banner .cookie-text {
		font-size: 13px;
		margin-bottom: 10px;
	}

	#cookie-consent-banner .cookie-button {
		width: 100%;
		padding: 14px 30px;
	}
}
