:root {
	--ppid-progress-bg: linear-gradient(
		135deg,
		#0f172a 0%,
		#1e3a5f 50%,
		#2563eb 100%
	);
	--ppid-progress-bar-bg: linear-gradient(
		90deg,
		#63b3ed 0%,
		#4fd1c5 50%,
		#38b2ac 100%
	);
}

.perm-progress-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(10, 22, 40, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.perm-progress-card {
	width: 90%;
	max-width: 520px;
	background: var(--ppid-progress-bg);
	border-radius: 20px;
	padding: 40px 36px;
	text-align: center;
	color: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.perm-progress-card::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	pointer-events: none;
}

.perm-progress-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}

.perm-progress-subtitle {
	font-size: 13px;
	opacity: 0.8;
	margin-bottom: 4px;
	font-style: italic;
}

.perm-progress-note {
	font-size: 11px;
	opacity: 0.6;
	margin-bottom: 28px;
}

.perm-progress-step {
	font-size: 13px;
	font-weight: 600;
	opacity: 0.9;
	margin-bottom: 6px;
}

.perm-progress-track {
	width: 100%;
	height: 40px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.perm-progress-fill {
	height: 100%;
	width: 0%;
	min-width: 0;
	border-radius: 11px;
	background: var(--ppid-progress-bar-bg);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width 0.25s ease;
	box-sizing: border-box;
}

.perm-progress-label {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	white-space: nowrap;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
	pointer-events: none;
}
