/* Snackbar styles */
#snackbar {
	visibility: hidden;
	min-width: 250px;
	background-color: #ffffff;
	color: #000000;
	text-align: center;
	border-radius: 4px;
	padding: 16px;
	position: fixed;
	z-index: 1000;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	font-size: 16px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

#snackbar.show {
	visibility: visible;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}

@media (max-width: 768px) {
	#snackbar {
		min-width: 200px;
		padding: 12px;
		font-size: 14px;
	}
}
