#privacy-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding: 12px 15px;
	box-sizing: border-box;
	display: none;
	flex-direction: column;
	align-items: center;
	z-index: 10001;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent p {
	margin: 0 0 10px 0;
	text-align: center;
	max-width: 100%;
}
#privacy-consent a {
	color: #ffd700;
	text-decoration: underline;
	font-weight: bold;
}
#privacy-consent a:hover {
	color: #ffed4e;
}
#privacy-consent .cookie-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
	width: 100%;
}
#privacy-consent button {
	background: rgba(255,255,255,0.9);
	color: #333;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 13px;
	transition: all 0.3s ease;
	flex: 1;
	max-width: 120px;
}
#privacy-consent button:hover {
	background: #ffffff;
	transform: translateY(-1px);
}
#privacy-consent button:first-child {
	background: rgba(76, 175, 80, 0.9);
	color: white;
}
#privacy-consent button:first-child:hover {
	background: #4caf50;
}
@media (min-width: 768px) {
	#privacy-consent {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 15px 20px;
	}
	#privacy-consent p {
		margin: 0;
		text-align: left;
		flex: 1;
		margin-right: 15px;
	}
	#privacy-consent .cookie-buttons {
		width: auto;
		flex-shrink: 0;
	}
	#privacy-consent button {
		flex: none;
	}
}