/* GMP Chat kontekst — obavijest o kopiranom tekstu */

.gmp-chk-toast {
	position: fixed;
	right: 16px;
	bottom: 96px;
	z-index: 999999;
	max-width: min(340px, calc(100vw - 32px));
	padding: 12px 16px;
	border-radius: 10px;
	background: #382e2d;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
}

.gmp-chk-toast--vidljiv {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 767px) {
	.gmp-chk-toast {
		right: 12px;
		left: 12px;
		bottom: 88px;
		max-width: none;
		font-size: 13px;
	}
}
