body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #f0f0f0;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}

.bold {
	font-weight: bold;
}

.icon {
	height: 40vh;
	border-radius: 20px;
}

@media (max-width: 768px) {
	.icon {
		height: 20vh;
	}
}

.popup-android {
	position: fixed;
	top: 25px;
	right: 15px;
	background-color: #333;
	color: white;
	text-align: center;
	padding: 15px;
	border-radius: 8px;
	max-width: 300px;
	z-index: 100;
	visibility: hidden;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.popup-android {
		max-width: 80%;
	}
}

.popup-ios {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: white;
	text-align: center;
	padding: 15px;
	border-radius: 8px;
	z-index: 100;
	visibility: hidden;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.popup-ios {
		max-width: 80%;
	}
}

.popup-text {
	font-size: 14px;
	font-weight: 500;
	margin-right: 8px;
}

.svg-icon {
	vertical-align: middle;
}

#spinner {
	border: 4px solid #ccc; /* Light grey */
	border-top: 4px solid green; /* Green */
	border-radius: 50%;
	width: 24px; /* Spinner size */
	height: 24px; /* Spinner size */
	animation: spin 1s linear infinite; /* Spin animation */
	margin: 0 auto; /* Centering the spinner */
	visibility: hidden;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
