/* Screen-only styling for the Download PDF button. Loaded without a print
   media query restriction, but the button itself is hidden in print via
   print.css (.nspdf-download-wrap), so it never appears in the PDF. */

.nspdf-download-wrap {
	margin: 24px 0;
	text-align: left;
}

.nspdf-download-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.nspdf-download-button:hover,
.nspdf-download-button:focus {
	background: #333;
}

.nspdf-download-button:disabled {
	opacity: 0.6;
	cursor: default;
}

.nspdf-download-button .nspdf-icon {
	flex: 0 0 auto;
}

.nspdf-download-button .nspdf-label {
	flex: 0 0 auto;
}

/* Small non-blocking tip shown the first time a visitor uses the button. */
.nspdf-bg-tip {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	max-width: 92vw;
	background: #1a1a1a;
	color: #fff;
	padding: 12px 18px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.4;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.nspdf-bg-tip.is-visible {
	opacity: 1;
}
