.papr-admin-wrapper {
	all: initial;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #FCFCFC;
	min-height: 100vh;
	padding: 40px 20px;
	box-sizing: border-box;
	margin-left: -20px;
}
.papr-admin-wrapper * {
	box-sizing: border-box;
}
.papr-admin-container {
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	text-align: center;
}
.papr-hero-image {
	width: 100%;
	max-width: 840px;
	height: 250px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 32px;
}
.papr-headline {
	font-family: 'Cardo', serif;
	font-size: 28px;
	font-weight: 400;
	color: #1a1a1a;
	margin: 0 0 8px 0;
	line-height: 1.3;
}
.papr-subhead {
	font-size: 16px;
	color: #666;
	margin: 0 0 32px 0;
	line-height: 1.5;
}
.papr-value-props {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 32px;
}
.papr-value-prop {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #333;
}
.papr-value-prop img {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.papr-btn-primary {
	display: inline-block;
	background: #1a1a1a;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}
.papr-btn-primary:hover {
	background: #333;
	color: #fff;
}
.papr-btn-secondary {
	display: inline-block;
	background: transparent;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 500;
	padding: 11px 23px;
	border: 1px solid #ccc;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.papr-btn-secondary:hover {
	border-color: #999;
	background: #f5f5f5;
	color: #1a1a1a;
}
.papr-btn-disconnect {
	display: inline-block;
	background: #fef2f2;
	color: #dc2626;
	font-size: 15px;
	font-weight: 500;
	padding: 11px 23px;
	border: 1px solid #fecaca;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.papr-btn-disconnect:hover {
	border-color: #fca5a5;
	background: #fee2e2;
	color: #dc2626;
}
.papr-btn-danger {
	display: inline-block;
	background: #dc2626;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}
.papr-btn-danger:hover {
	background: #b91c1c;
	color: #fff;
}
.papr-helper-text {
	font-size: 13px;
	color: #888;
	margin-top: 12px;
}
.papr-footer {
	margin-top: 48px;
	font-size: 13px;
	color: #888;
}
.papr-footer a {
	color: #666;
	text-decoration: none;
}
.papr-footer a:hover {
	text-decoration: underline;
}
.papr-confirm-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
}
.papr-confirm-actions form {
	margin: 0;
}
.papr-disconnect-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.papr-link-how {
	background: none;
	border: none;
	color: #888;
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.papr-link-how:hover {
	color: #666;
}
.papr-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.papr-modal-overlay.papr-modal-visible {
	opacity: 1;
	pointer-events: auto;
}
.papr-modal {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 960px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	transform: scale(0.97);
	transition: transform 0.2s ease;
}
.papr-modal-visible .papr-modal {
	transform: scale(1);
}
.papr-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px 0 24px;
}
.papr-modal-title {
	font-family: 'Cardo', serif;
	font-size: 20px;
	font-weight: 400;
	color: #1a1a1a;
	margin: 0;
}
.papr-modal-close {
	background: none;
	border: none;
	font-size: 22px;
	color: #999;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}
.papr-modal-close:hover {
	color: #333;
	background: #f5f5f5;
}
.papr-modal-body {
	padding: 20px 24px 24px 24px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.papr-modal-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.papr-modal-step-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: top left;
	border-radius: 8px;
	border: 1px solid #eee;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.papr-modal-step-text {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}
