/**
 * KCP Video Gallery — Plugin CSS
 * Only toast notifications live here.
 * All showcase page display CSS lives in the theme (kcp-showcase.css).
 */

/* ── Toast notification ── */
.kcp-toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #16110a;
	color: #fff;
	font-family: 'Space Mono', 'Courier New', monospace;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 10px 20px;
	border-radius: 6px;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s, transform .25s;
	white-space: nowrap;
}
.kcp-toast.kcp-toast-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
