/* ./css/index.css */

/* Mobile 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: 12px;
	max-width: 400px;
	width: 90%;
	text-align: center;
  }

  .ios-modal-text {
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
  }

  .ios-badge-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
  }

  .ios-badge-link {
	display: inline-block;
	transition: transform 0.15s ease;
  }

  .ios-badge-link:hover {
	transform: scale(1.05);
  }

  .ios-badge-img {
	height: 48px;
	width: auto;
  }

  .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;
	display: inline-block;
  }

  .ios-modal-button--dismiss {
	background: none;
	border: none;
	color: #888;
	font-weight: 400;
	font-size: 0.9rem;
	cursor: pointer;
	padding: 0.5rem 1rem;
	text-decoration: underline;
  }

  .ios-modal-button--dismiss:hover {
	color: #555;
  }

  .ios-modal-button:hover {
	opacity: 0.9;
  }
  