.alert-container {
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 10001;
	max-width: 450px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.alert-container > * {
	pointer-events: auto;
}

.alert-box {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-left: 5px solid #0279A8;
	border-radius: 10px;
	padding: 22px 24px;
	margin-bottom: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	gap: 18px;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	animation: slideInRight 0.4s ease-out;
}

.alert-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 5px;
	background: linear-gradient(to bottom, rgba(2, 121, 168, 0.8), rgba(2, 121, 168, 0.3));
}

.alert-box.success {
	border-left-color: #28a745;
	background: linear-gradient(135deg, #f0fff4 0%, #e6f9ec 100%);
}

.alert-box.success::before {
	background: linear-gradient(to bottom, rgba(40, 167, 69, 0.8), rgba(40, 167, 69, 0.3));
}

.alert-box.error {
	border-left-color: #dc3545;
	background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.alert-box.error::before {
	background: linear-gradient(to bottom, rgba(220, 53, 69, 0.8), rgba(220, 53, 69, 0.3));
}

.alert-box.warning {
	border-left-color: #ffc107;
	background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
}

.alert-box.warning::before {
	background: linear-gradient(to bottom, rgba(255, 193, 7, 0.8), rgba(255, 193, 7, 0.3));
}

.alert-icon {
	font-size: 28px;
	min-width: 28px;
}

.alert-box.success .alert-icon {
	color: #28a745;
}

.alert-box.error .alert-icon {
	color: #dc3545;
}

.alert-box.warning .alert-icon {
	color: #ffc107;
}

.alert-box.info .alert-icon {
	color: #0279A8;
}

.alert-content {
	flex: 1;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	font-weight: 500;
}

.alert-close {
	cursor: pointer;
	font-size: 24px;
	color: #999;
	transition: all 0.2s ease;
	padding: 5px;
	line-height: 1;
	background: transparent;
	border: none;
	min-width: auto;
}

.alert-close:hover {
	color: #333;
	transform: rotate(90deg);
}

@keyframes slideInRight {
	from {
		transform: translateX(450px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(450px);
	}
}

.alert-box.hiding {
	animation: fadeOut 0.3s ease-out forwards;
}
