body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f8f8f8;
}

#search {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

#app-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.app-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.app-info {
  flex-grow: 1;
}

.app-name {
  font-weight: bold;
  margin-bottom: 4px;
}

.download-button {
  background: #007bff;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}
