.ios-button, .android-button{
	display: none;
	text-decoration: none;
	color: white;
	background-color: #007bff;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.ios-system .ios-button, .android-system .android-button{
  display: block;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none; 
}

body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
.container {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	text-align: center;
}
a {
	
}
a:hover {
	background-color: #0056b3;
}