.pmpn-prompt {
	position: fixed;
	right: 20px;
	bottom: 20px;
	max-width: 320px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 16px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	animation: pmpn-slide-in 0.3s ease-out;
}

@keyframes pmpn-slide-in {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.pmpn-prompt__icon {
	font-size: 28px;
	line-height: 1;
}

.pmpn-prompt__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.pmpn-prompt__text strong {
	font-size: 14px;
	color: #1a1a1a;
}

.pmpn-prompt__text span {
	font-size: 12.5px;
	color: #555;
	line-height: 1.4;
}

.pmpn-prompt__actions {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pmpn-prompt__actions button {
	border: none;
	border-radius: 6px;
	padding: 6px 12px;
	font-size: 12.5px;
	cursor: pointer;
	white-space: nowrap;
}

#pmpn-allow {
	background: #c0392b;
	color: #fff;
	font-weight: 600;
}

#pmpn-dismiss {
	background: transparent;
	color: #888;
}

@media (max-width: 480px) {
	.pmpn-prompt {
		left: 12px;
		right: 12px;
		max-width: none;
	}
}
