/* ./css/index.css */

/* iOS Redirect Modal Styles */
.ios-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .ios-modal-container {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	max-width: 400px;
	width: 90%;
	text-align: center;
  }
  
  .ios-modal-text {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: #333;
  }
  
  .ios-button-container {
	display: flex;
	justify-content: space-around;
  }
  
  .ios-modal-button {
	background-color: #007bff;
	border: none;
	color: white;
	font-weight: 600;
	padding: 0.75rem 1.25rem;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none; /* Ensures links look like buttons */
	display: inline-block; /* Ensures links behave like buttons */
  }
  
  .ios-modal-button:hover {
	opacity: 0.9;
  }
  