.notification-table-wrapper {
	padding: 10px;
	min-width: 280px;
	max-width: 320px;
	white-space: normal;
	overflow-wrap: break-word;
	text-align: center;
	background: #1b2f56;
	transform: translateX(-50%);
}

.notification-table {
	width: 100%;
	border-collapse: collapse;
}

.notification-table td {
	padding: 8px 10px;
	font-size: 14px;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-link {
	color: #3b82f6;
	text-decoration: none;
	display: block;
	line-height: 1em !important;
	font-family: Abel !important;
}

.notification-table-wrapper {
	position: absolute;
	top: 100%;
	left: 50%;
	background: #1b2f56;
	padding: 12px;
	z-index: 9999;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	min-width: 280px;
	max-width: 320px;
	white-space: normal;
	overflow-wrap: break-word;
}

/* Hide on mobile / show on desktop */
@media (max-width: 768px) {
	.desktop-only {
		display: none !important;
	}
	.mobile-only {
		display: inline !important;
	}
}
@media (min-width: 769px) {
	.desktop-only {
		display: inline !important;
	}
	.mobile-only {
		display: none !important;
	}
}
