.elegantNotification-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.elegantNotification {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #333;
	color: white;
	padding: 12px 16px;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.25);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	min-width: 250px;
	max-width: 300px;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.elegantNotification.show {
	opacity: 1;
	transform: translateY(0);
}

.elegantNotification .icon {
	flex-shrink: 0;
}

.elegantNotification .text {
	flex-grow: 1;
}

.elegantNotification .text .title {
	font-weight: bold;
	margin-bottom: 4px;
}

.elegantNotification .progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: rgba(255,255,255,0.6);
	transition: width 0.2s linear;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.elegantNotification.success { background-color: #4CAF50; }
.elegantNotification.error { background-color: #F44336; }
.elegantNotification.warning { background-color: #FF9800; }
.elegantNotification.info { background-color: #2196F3; }
