.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.toast {
	background: #ffffff;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border-left: 4px solid #FF7C00;
	min-width: 300px;
	max-width: 400px;
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s ease;
	position: relative;
}

.toast.show {
	transform: translateX(0);
	opacity: 1;
}

.toast.error { border-left-color: #dc3545; }
.toast.success { border-left-color: #28a745; }
.toast.warning { border-left-color: #ffc107; }
.toast.info { border-left-color: #17a2b8; }

.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast.error .toast-icon { color: #dc3545; }
.toast.success .toast-icon { color: #28a745; }
.toast.warning .toast-icon { color: #ffc107; }
.toast.info .toast-icon { color: #17a2b8; }

.toast-content { flex: 1; }
.toast-title { font-weight: 600; color: #333; margin: 0 0 0.25rem 0; font-size: 0.95rem; }
.toast-message { color: #666; margin: 0; font-size: 0.9rem; line-height: 1.4; }

.toast-close {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 18px;
	margin-left: 10px;
	padding: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.toast-close:hover { color: #666; }


