/* Toast Component Styles */
.toast-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	pointer-events: none;
}

.toast {
	background: #fff;
	color: #333;
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 12px;
	min-width: 320px;
	max-width: 400px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
	border: 1px solid #e5e7eb;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.toast.show {
	transform: translateX(0);
	opacity: 1;
}

.toast.hide {
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.success {
	background: #f0fdf4;
	border-left: 4px solid #10B981;
	color: #065f46;
}

.toast.error {
	background: #fef2f2;
	border-left: 4px solid #EF4444;
	color: #991b1b;
}

.toast.warning {
	background: #fffbeb;
	border-left: 4px solid #F59E0B;
	color: #92400e;
}

.toast.info {
	background: #eff6ff;
	border-left: 4px solid #3B82F6;
	color: #1e40af;
}

.toast-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.toast-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.toast-message {
	flex: 1;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
}

.toast-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	color: #6b7280;
	font-size: 18px;
	cursor: pointer;
	opacity: 0.6;
	transition: all 0.2s;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.toast-close:hover {
	opacity: 1;
	background: rgba(0,0,0,0.05);
	color: #374151;
}
