/* QN Cookie Bar — Parent Page Styles (minimal) */

#qn-cookie-bar-container {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	pointer-events: auto;
}

#qn-cookie-bar-container.qn-position-bottom {
	bottom: 0;
}

#qn-cookie-bar-container.qn-position-top {
	top: 0;
}

#qn-cookie-bar-container.qn-position-center-modal {
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
}

#qn-cookie-bar-container.qn-position-center-modal #qn-cookie-iframe {
	max-width: 640px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#qn-cookie-iframe {
	width: 100%;
	border: none;
	display: block;
	background: #fff;
	box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
}

/* Reconsent floating button */
@keyframes qn-reconsent-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

#qn-cookie-reconsent {
	position: fixed;
	bottom: 16px;
	left: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	z-index: 999998;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	transition: box-shadow 0.2s, color 0.2s;
	padding: 0;
	animation: qn-reconsent-in 0.25s ease both;
}

#qn-cookie-reconsent:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	color: #333;
}

#qn-cookie-reconsent:focus-visible {
	outline: 3px solid #1a73e8;
	outline-offset: 2px;
}
