.french-cookie-banner-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	color: #333333;
	padding: 15px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 99999;
	font-family: sans-serif;
	box-sizing: border-box;
}

.french-cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
}

.french-cookie-banner-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.french-cookie-banner-buttons {
	display: flex;
	gap: 10px;
}

.fcb-btn {
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.fcb-btn-accept {
	background-color: #0073aa;
	color: white;
}

.fcb-btn-accept:hover {
	background-color: #005177;
}

.fcb-btn-reject {
	background-color: transparent;
	color: #333333;
	border: 1px solid #cccccc;
}

.fcb-btn-reject:hover {
	background-color: #f1f1f1;
}

@media (min-width: 768px) {
	.french-cookie-banner-content {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
