#toast-container {
	position: fixed !important;
	top: 30px !important;
	left: 50% !important;
	transform: translateX(-50%);
	z-index: 99999 !important;
	display: flex !important;
	flex-direction: column;
	gap: 15px;
	pointer-events: none;
	width: 100%;
	max-width: 100vw;
	padding: 0 15px;
	box-sizing: border-box;
	align-items: center;
}

.toast {
	width: 100%;
	max-width: 400px;
	background-color: #fff !important;
	color: #000 !important;
	padding: 15px 20px !important;
	border-radius: 6px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
	animation: fadeInUp 0.6s ease forwards;
	position: relative;
	font-weight: 500;
	font-size: 15px;
	pointer-events: auto;
	opacity: 1 !important;
	text-align: center;
	display: block !important;
	z-index: 99999 !important;
}

/* Toast types */
.toast.toast-success {
	background-color: #34aa4a !important;
	color: #c9ffcb !important;
}

.toast.toast-error {
	background-color: #d83030 !important;
    color: #6a000a !important;
}

.toast.toast-danger {
	background-color: #d83030 !important;
    color: #6a000a !important;
}

.toast.toast-info {
	background-color: #03a9f4 !important;
	color: #055160 !important;
}

.toast.toast-warning {
	background-color: #ffc107 !important;
	color: #664d03 !important;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
