#fomo-notification {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999999;
	width: 400px;
	max-width: calc(100% - 40px);
	background: #ffffff;
	border-radius: 6px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(150%);
	transition: transform 0.3s ease-in-out;
}
#fomo-notification.show {
	transform: translateY(0);
}
#fomo-notification-inner {
	display: flex;
	padding: 15px;
	align-items: center;
}
#fomo-notification-image {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	display: none;
}
#fomo-notification-image.show {
	display: block;
}
#fomo-notification-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#fomo-notification-content {
	flex-grow: 1;
}
#fomo-notification-text {
	margin: 0 0 5px 0;
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}
#fomo-notification-name {
	color: #000;
}
#fomo-notification-location {
	color: #666;
}
#fomo-notification-title {
	color: #2271b1;
	text-decoration: none;
}
#fomo-notification-title:hover {
	text-decoration: underline;
}
#fomo-notification-date {
	margin: 0;
	font-size: 12px;
	color: #888;
}
