/* PWA install floating button styles */
#pwaInstallContainer,
#pwaInstallContainerLogin {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1050;
	display: none;
}
.pwa-install-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #337ab7;
	color: #fff;
	border-radius: 9999px;
	padding: 10px 14px 10px 12px;
	box-shadow: 0 8px 20px rgba(13,110,253,0.25), 0 2px 6px rgba(13,110,253,0.2);
	transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}
.pwa-install-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(13,110,253,0.32), 0 3px 8px rgba(13,110,253,0.25);
}
.pwa-install-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
}
.pwa-install-label {
	font-weight: 600;
	letter-spacing: .2px;
	white-space: nowrap;
}
.pwa-install-close {
	background: transparent;
	border: 0;
	color: rgba(255,255,255,0.9);
	padding: 2px 4px;
	margin-left: 2px;
	border-radius: 6px;
	line-height: 1;
}
.pwa-install-close:hover {
	background: rgba(255,255,255,0.12);
	color: #fff;
}
@media (max-width: 480px) {
	#pwaInstallContainer,
	#pwaInstallContainerLogin { right: 12px; bottom: 12px; }
	.pwa-install-card { padding: 8px 10px 8px 10px; gap: 10px; }
	.pwa-install-label { font-size: 14px; }
	.pwa-install-icon { width: 24px; height: 24px; }
}


