/**
 * Web2App Pro — Install banner styles.
 * Scoped under .web2app-pro-install-banner to avoid leaking into the host theme.
 */

.web2app-pro-install-banner {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba( 0, 0, 0, 0.18 );
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	animation: web2app-pro-slide-up 0.25s ease-out;
}

.web2app-pro-install-banner__content {
	flex: 1;
	min-width: 0;
}

.web2app-pro-install-banner__content strong {
	display: block;
	font-size: 14px;
	color: #1d2327;
}

.web2app-pro-install-banner__content p {
	margin: 2px 0 0;
	font-size: 12px;
	color: #646970;
}

.web2app-pro-install-banner__button {
	flex-shrink: 0;
	padding: 8px 16px;
	border: none;
	border-radius: 999px;
	background: #0073aa;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.web2app-pro-install-banner__close {
	flex-shrink: 0;
	border: none;
	background: transparent;
	font-size: 18px;
	line-height: 1;
	color: #8c8f94;
	cursor: pointer;
	padding: 4px;
}

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