#toastContainer {
	position: fixed;
	z-index: 9999;
	width: 100%;
	pointer-events: none;
	height: 100%;
}

#toastContainer .toast-custom {
	min-width: 200px;
	max-width: 400px;
	width: auto;
	margin: 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	font-family: 'Noto Sans KR', "NanumBarunGothic", "Malgun Gothic", "맑은 고딕", arial, sans-serif;
	pointer-events: auto;
	position: relative;
	opacity: 0;
	transition: opacity 0.5s ease;
	overflow: hidden;
	color: white;
}

#toastContainer .toast-custom.show {
	opacity: 1;
}

/* Toast Title Section */
#toastContainer .toast-custom .toast-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0.75rem;
	font-weight: 500;
	color: white;
}

#toastContainer .toast-custom .toast-header button {
	background: none;
	border: none;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	position: relative;
}

#toastContainer .toast-custom .toast-header span {
	vertical-align: middle;
}

/* Horizontal line */

#toastContainer .toast-custom.success .toast-hr {
	border-bottom: 1px solid #289045;
	border: none;
	margin: 0;
	opacity: 0.75;
}

#toastContainer .toast-custom.error .toast-hr {
	border-bottom: 1px solid #DC2535;
	border: none;
	margin: 0;
	opacity: 0.75;
}

/* Toast Body Section */
#toastContainer .toast-custom .toast-body {
	padding: 0.5rem 0.75rem;
	color: white;
	text-align: left;
}

/* Positioning */
#toastContainer .toast-custom.center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

#toastContainer .toast-custom.topCenter {
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

#toastContainer .toast-custom.topLeft {
	top: 10px;
	left: 10px;
	position: absolute;
}

#toastContainer .toast-custom.topRight {
	top: 10px;
	right: 10px;
	position: absolute;
}

#toastContainer .toast-custom.bottomCenter {
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

#toastContainer .toast-custom.bottomLeft {
	bottom: 10px;
	left: 10px;
	position: absolute;
}

#toastContainer .toast-custom.bottomRight {
	bottom: 10px;
	right: 10px;
	position: absolute;
}

/* Colors for error and success */
#toastContainer .toast-custom.success .toast-header {
	background-color: #28a045;
}

#toastContainer .toast-custom.error .toast-header {
	background-color: #DC3545;
}

#toastContainer .toast-custom.success .toast-body {
	background-color: #28a745;
}

#toastContainer .toast-custom.error .toast-body {
	background-color: #DC345A;
}