#privacy-modal {
	position: fixed;
	bottom: 0;
	right: 0;
	background-color: #fff;
	color: #000;
	padding: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 9999;
	max-width: 100%;
}
#privacy-modal a {
	color: #007bff;
	text-decoration: none;
}
#privacy-modal button {
	margin-top: 10px;
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
}
@media (min-width: 768px) {
	#privacy-modal {
		max-width: 400px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	#privacy-modal button {
		margin-top: 0;
	}
}