/* PDF ako obrázok – štýly */
.ptie-wrap {
	width: 100%;
}

.ptie-align-center {
	text-align: center;
}

.ptie-pdf {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var( --ptie-gap, 24px );
}

.ptie-align-left .ptie-pdf {
	margin-left: 0;
	margin-right: auto;
}

.ptie-align-right .ptie-pdf {
	margin-left: auto;
	margin-right: 0;
}

.ptie-page {
	display: block;
	width: 100%;
	height: auto;
	background: #fff;
	border-radius: var( --ptie-radius, 6px );
}

.ptie-shadow .ptie-page {
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.12 );
}

.ptie-loading,
.ptie-error {
	padding: 48px 20px;
	text-align: center;
	color: #8a8a8a;
	font-size: 14px;
	letter-spacing: 0.02em;
}

.ptie-error {
	color: #b4584f;
}

.ptie-download {
	display: inline-block;
	margin-top: 18px;
	padding: 11px 26px;
	border: 1px solid currentColor;
	border-radius: 40px;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.ptie-download:hover {
	opacity: 0.7;
}
