/* WP Browser Push Pro – Public styles */

.wpbpp-prompt {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 420px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wpbpp-prompt-inner {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border: 1px solid #e5e7eb;
}

.wpbpp-prompt-content strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
	color: #111;
}

.wpbpp-prompt-content p {
	margin: 0;
	font-size: 14px;
	color: #555;
	line-height: 1.4;
}

.wpbpp-prompt-actions {
	display: flex;
	gap: 10px;
}

.wpbpp-btn {
	flex: 1;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: background 0.15s ease;
}

.wpbpp-btn-primary {
	background: #2563eb;
	color: #fff;
}

.wpbpp-btn-primary:hover {
	background: #1d4ed8;
}

.wpbpp-btn-secondary {
	background: #f3f4f6;
	color: #374151;
}

.wpbpp-btn-secondary:hover {
	background: #e5e7eb;
}

/* Mobile adjustments */
@media (max-width: 480px) {
	.wpbpp-prompt {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}
}

/* In-page notification modal */
.wpbpp-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	animation: wpbpp-fade-in 0.2s ease;
}

.wpbpp-modal {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	max-width: 400px;
	width: 100%;
	padding: 24px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	animation: wpbpp-slide-up 0.25s ease;
}

.wpbpp-modal-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.wpbpp-modal-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.wpbpp-modal-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}

.wpbpp-modal-body {
	margin: 0 0 20px;
	font-size: 14px;
	color: #475569;
	line-height: 1.5;
}

.wpbpp-modal-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.wpbpp-modal-actions .wpbpp-btn {
	flex: 0 1 auto;
	min-width: 90px;
}

@keyframes wpbpp-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes wpbpp-slide-up {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
