/* WellCoins User Milestone Notification */

.wcc-user-notice {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 999999;
	background: #111;
	color: #ffffff;
	padding: 16px 20px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	max-width: 320px;
	font-size: 15px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wcc-user-notice:hover {
	transform: scale(1.03);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.wcc-user-notice a {
	color: white !important;
	text-decoration: none !important;
}

.wcc-user-notice__link {
	color: #ffffff;
	text-decoration: none;
	display: block;
	flex: 1;
}

.wcc-user-notice__link strong {
	font-weight: 700;
}

.wcc-user-notice__link:hover {
	text-decoration: none;
}

.wcc-user-notice__close {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	opacity: 0.7;
	flex-shrink: 0;
}

.wcc-user-notice__close:hover {
	opacity: 1;
}

.wcc-user-notice {
	background-color: rgb(48, 138, 150);
}