#cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #7e5454;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 800px;
	margin: 0 auto 24px auto;
	border-radius: 12px;
	font-family: inherit;
	color: #222;
	font-size: 15px;
}

#cookie-banner strong {
	font-size: 18px;
	margin-bottom: 10px;
	color: #000000 !important;
}

#cookie-banner p {
	margin: 0 0 12px 0;
	text-align: justify;
	color: #000000 !important;
}

#cookie-banner a {
	color: #000000;
	text-decoration: underline;
}

#cookie-banner button {
	background: #eee;
	color: #222;
	padding: 8px 18px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s;
}

#cookie-banner button#cookie-accept {
	background: #4c1c1c;
	color: #fff;
}

#cookie-banner button#cookie-accept:hover {
	color: #000;
}

#cookie-banner button:hover {
	background: #d7e2ff;
}

#cookie-banner-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
}

@media (max-width: 700px) {
	#cookie-banner {
		border-radius: 12px 12px 0 0 !important;
		padding: 24px !important;
		font-size: 14px !important;
	}

	#cookie-banner-buttons {
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	#cookie-banner button {
		width: 100%;
		box-sizing: border-box;
	}
}

#cookie-settings-popup, .cookie-popup-styled {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #7e5454;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 800px;
	margin: 0 auto 24px auto;
	border-radius: 12px;
	font-family: inherit;
	color: #222;
	font-size: 14px;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}

#cookie-settings-popup button#cookie-accept {
	background: #4c1c1c;
	color: #fff;
}

#cookie-settings-popup button#cookie-accept:hover {
	color: #000;!important;
}

#cookie-settings-popup strong,
.cookie-popup-styled strong {
	font-size: 18px;
	margin-bottom: 10px;
	color: #000000 !important;
}

#cookie-settings-popup form label,
.cookie-popup-styled form label {
	display: block;
	margin: 10px 0 0 0;
	text-align: left;
	font-size: 14px;
	cursor: pointer;
	font-weight: 400;
	color: #000000 !important;
}

#cookie-settings-popup button,
.cookie-popup-styled button {
	background: #3377ff;
	color: #fff;
	padding: 8px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	margin-top: 24px;
	font-size: 14px;
	transition: background 0.15s;
}

#cookie-settings-popup button:hover,
.cookie-popup-styled button:hover {
	background: #265bcc;
	color: #fff;
}

#cookie-settings-popup input[type="checkbox"],
.cookie-popup-styled input[type="checkbox"] {
	width: 22px;
	height: 22px;
	transform: scale(1.4);
	margin-right: 8px;
	accent-color: #4c1c1c;
	vertical-align: middle;
}

@media (max-width: 700px) {
	#cookie-settings-popup, .cookie-popup-styled {
		border-radius: 12px 12px 0 0 !important;
		padding: 24px !important;
		font-size: 14px !important;
		max-width: 100vw !important;
	}
}