.ppd-download-wrap {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.ppd-download-button[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}

.ppd-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.8);
	border-radius: 50%;
	animation: ppd-spin 0.8s linear infinite;
}

.ppd-spinner.is-active {
	display: inline-block;
}

.ppd-status {
	font-size: 14px;
}

@keyframes ppd-spin {
	to {
		transform: rotate(360deg);
	}
}

.ppd-svg-tester {
	max-width: 700px;
}

.ppd-svg-stage svg {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
}