#cf-toast-container {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 1090;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	pointer-events: none;
	max-width: 420px;
	width: 100%;
}

.cf-toast {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.65rem 0.85rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #212529;
	background: #fff;
	border: 1px solid #dee2e6;
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
	pointer-events: auto;
	opacity: 0;
	transform: translateX(30px);
	transition: opacity .25s ease, transform .25s ease;
}
.cf-toast-show {
	opacity: 1;
	transform: translateX(0);
}
.cf-toast-hide {
	opacity: 0;
	transform: translateX(30px);
}

.cf-toast-success { border-left: 4px solid #198754; }
.cf-toast-error   { border-left: 4px solid #dc3545; background: #fff5f5; }
.cf-toast-warn    { border-left: 4px solid #ffc107; background: #fffdf0; }
.cf-toast-info    { border-left: 4px solid #0d6efd; }

.cf-toast-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
}
.cf-toast-success .cf-toast-icon { color: #198754; }
.cf-toast-error   .cf-toast-icon { color: #dc3545; }
.cf-toast-warn    .cf-toast-icon { color: #ffc107; }
.cf-toast-info    .cf-toast-icon { color: #0d6efd; }

.cf-toast-msg {
	flex: 1;
	word-break: break-word;
}

.cf-toast-close {
	flex-shrink: 0;
	background: none;
	border: none;
	font-size: 1.1rem;
	line-height: 1;
	color: #6c757d;
	cursor: pointer;
	padding: 0 0 0 0.25rem;
}
.cf-toast-close:hover { color: #212529; }

/* ── Progress overlay ──────────────────────────────────────────────────── */
#cf-progress-overlay {
	position: fixed;
	inset: 0;
	z-index: 1080;
	background: rgba(255,255,255,.65);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(2px);
}
#cf-progress-box {
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
	padding: 1.5rem 2rem;
	text-align: center;
	min-width: 280px;
}
#cf-progress-box h6 {
	margin-bottom: .75rem;
	font-weight: 600;
}
#cf-progress-box .spinner-border {
	width: 2rem;
	height: 2rem;
	margin-bottom: .75rem;
}
#cf-progress-status {
	font-size: .85rem;
	color: #6c757d;
	margin-top: .5rem;
}
