@charset "utf-8";
/*PWA 설치 관련 스타일 */

.pwa-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #3498db;
	color: white;
	border: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

#pwa-install-btn {
	bottom: 80px;
	background-color: #2ecc71;
}

.pwa-btn i {
	font-size: 20px;
}

.pwa-btn:hover {
	transform: scale(1.1);
}

/* 모바일에서만 표시 */
/* @media (min-width: 768px) {
	.pwa-btn {
		display: none;
	}
}
 */