/* Event Booking Manager – deactivation modal */
.mpwem-deact-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.6);
	padding: 20px;
}
.mpwem-deact-overlay.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}
body.mpwem-deact-lock {
	overflow: hidden;
}
.mpwem-deact-modal {
	background: #fff;
	width: 100%;
	max-width: 560px;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	animation: mpwemDeactIn 0.15s ease-out;
}
@keyframes mpwemDeactIn {
	from { transform: translateY(12px); opacity: 0; }
	to   { transform: translateY(0); opacity: 1; }
}
.mpwem-deact-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e2e4e7;
}
.mpwem-deact-head h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
}
.mpwem-deact-close {
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: #777;
	cursor: pointer;
	padding: 0 4px;
}
.mpwem-deact-close:hover {
	color: #d63638;
}
.mpwem-deact-body {
	padding: 18px 20px;
}
.mpwem-deact-intro {
	margin: 0 0 14px;
	font-size: 14px;
	color: #1d2327;
}
.mpwem-deact-option {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 12px 14px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: border-color 0.12s ease, background 0.12s ease;
}
.mpwem-deact-option:hover {
	border-color: #2271b1;
}
.mpwem-deact-option input[type="radio"] {
	margin-top: 3px;
}
.mpwem-deact-option__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.mpwem-deact-option__title {
	font-weight: 600;
	font-size: 14px;
	color: #1d2327;
}
.mpwem-deact-option__desc {
	font-size: 12.5px;
	color: #50575e;
	line-height: 1.5;
}
.mpwem-deact-option--danger:hover {
	border-color: #d63638;
	background: #fcf0f1;
}
.mpwem-deact-option--danger .mpwem-deact-option__title {
	color: #b32d2e;
}
.mpwem-deact-confirm {
	margin: 4px 0 0;
	padding: 10px 14px;
	background: #fcf0f1;
	border: 1px solid #f0c2c3;
	border-radius: 6px;
}
.mpwem-deact-confirm label {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 13px;
	color: #b32d2e;
	font-weight: 600;
}
.mpwem-deact-error {
	margin: 12px 0 0;
	color: #d63638;
	font-size: 13px;
	font-weight: 600;
}
.mpwem-deact-foot {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 14px 20px;
	border-top: 1px solid #e2e4e7;
	background: #f6f7f7;
}
.mpwem-deact-submit.is-loading {
	opacity: 0.85;
	pointer-events: none;
}

/* Hidden helper (covers themes that reset the attribute) */
.mpwem-deact-modal [hidden] {
	display: none !important;
}

/* Progress */
.mpwem-deact-progress {
	padding: 8px 0 4px;
}
.mpwem-deact-progress__label {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}
.mpwem-deact-bar {
	height: 10px;
	border-radius: 6px;
	background: #e2e4e7;
	overflow: hidden;
}
.mpwem-deact-bar__fill {
	display: block;
	height: 100%;
	width: 0;
	background: #2271b1;
	border-radius: 6px;
	transition: width 0.25s ease;
}
.mpwem-deact-progress__count {
	margin: 10px 0 0;
	font-size: 12.5px;
	color: #50575e;
}
