.page-screenshot-button {
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 2147483647;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 6px;
	color: #fff;
	background: rgba(12, 18, 16, .82);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .28);
	opacity: .08;
	cursor: pointer;
	transition: opacity .16s ease, border-color .16s ease, background .16s ease;
}

.page-screenshot-button:hover,
.page-screenshot-button:focus-visible,
.page-screenshot-button.is-busy {
	opacity: 1;
	border-color: #45c486;
	background: rgba(16, 23, 22, .96);
}

.page-screenshot-button:focus-visible {
	outline: 2px solid #45c486;
	outline-offset: 2px;
}

.page-screenshot-button:disabled {
	cursor: wait;
}

.page-screenshot-button svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.page-screenshot-button.is-busy svg {
	animation: page-screenshot-pulse .8s ease-in-out infinite alternate;
}

@keyframes page-screenshot-pulse {
	to { opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
	.page-screenshot-button { transition: none; }
	.page-screenshot-button.is-busy svg { animation: none; }
}
