.pwa-install-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pwa-btn-bg, #6366F1);
	color: var(--pwa-btn-color, #FFFFFF);
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 22px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.pwa-install-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.pwa-install-button:active {
	transform: translateY(0);
}

.pwa-style-pill { border-radius: 999px; }
.pwa-style-square { border-radius: 8px; }
.pwa-style-outline {
	background: transparent;
	border: 2px solid var(--pwa-btn-bg, #6366F1);
	color: var(--pwa-btn-bg, #6366F1);
	box-shadow: none;
}

.pwa-hidden {
	display: none !important;
}

.pwa-floating {
	position: fixed;
	z-index: 999999;
}

.pwa-position-bottom-right { bottom: 24px; right: 24px; }
.pwa-position-bottom-left { bottom: 24px; left: 24px; }
.pwa-position-top-right { top: 24px; right: 24px; }
.pwa-position-top-left { top: 24px; left: 24px; }
