body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	line-height: 1.6;
}

.app-icon img {
	width: 100px;
	height: 100px;
	object-fit: cover; /* Makes sure it fills the space without stretching */
}

.app-icon {
	width: 100px;
	height: 100px;
	margin: 20px auto;
	background: #f0f0f0;
	border-radius: 28px;
	overflow: hidden; /* This clips the inner content to the rounded shape */
	display: flex;
	align-items: center;
	justify-content: center;
	/* NEW LINE FOR BORDER */
	border: 3px solid #cdcdcd;
}

.description {
	color: #666;
	margin: 20px auto;
	max-width: 500px;
	text-align: center;
}

.download-button {
	background: #007AFF;
	color: white;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin: 20px 0;
	transition: background 0.3s;
}

.download-button:hover {
	background: #0056b3;
}

.footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.footer a {
	color: #666;
	margin: 0 10px;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.screenshots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: nowrap; /* keeps them in one row */
}

.screenshots img {
  width: 100%;
  max-width: 200px; /* cap size on big screens */
  flex: 1 1 auto;   /* allow them to shrink/grow */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Optional: make them scale together on very small screens */
@media (max-width: 650px) {
  .screenshots img {
	max-width: 30%; /* ~three per row with gaps */
  }
}

@media (max-width: 768px) {
  .screenshots img {
	width: 100%;
  }
}

/* General description text */
/* .description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
} */

/* Table styling */
/* Table styling */
table.description {
  width: 90%;              /* shrink width a bit */
  max-width: 600px;        /* keep it from stretching too wide */
  margin: 20px auto;       /* centers the table */
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Header styling */
table.description thead {
  background-color: #f5f5f5;
}

table.description th {
  padding: 12px 16px;
  font-weight: 600;
  color: #222;
}

/* Cell styling */
table.description td {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  vertical-align: top;
}

/* Row hover effect */
table.description tbody tr:hover {
  background-color: #fafafa;
}

/* Responsive adjustments */
/* @media (max-width: 600px) {
  table.description thead {
	display: none;
  }

  table.description, 
  table.description tbody, 
  table.description tr, 
  table.description td {
	display: block;
	width: 100%;
  }

  table.description tr {
	margin-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
  }

  table.description td {
	text-align: right;
	padding-left: 50%;
	position: relative;
  }

  table.description td::before {
	content: attr(data-label);
	position: absolute;
	left: 16px;
	width: 45%;
	padding-right: 10px;
	font-weight: 600;
	text-align: left;
	color: #555;
  }
} */
