body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #121213;
  margin: 0;
  padding: 20px;
  color: #e0e0e0;
}

.appstore-search {
  max-width: 500px;
  margin: auto;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 20px;
}

.search-bar .icon {
  font-size: 16px;
  margin-right: 8px;
  color: #aaa;
}

.search-bar input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 16px;
  outline: none;
  color: #e0e0e0;
}

/* Results */
.search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 10px;
  transition: background 0.2s ease;
}

.result-item:hover {
  background: #2a2a2a;
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.app-info {
  flex: 1;
  margin-left: 12px;
}

.app-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.developer {
  font-size: 13px;
  color: #aaa;
}

/* GET / OPEN button */
.get-btn {
  background: #2a2a2a;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: 14px;
  color: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.get-btn:hover {
  background: #4a90e2;
  color: #fff;
}

/* Submit for Review Button */
.submit-btn {
  display: inline-block;
  background: #4a90e2; /* Bright blue like App Store "action" */
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.submit-btn:hover {
  background: #357ab8; /* Slightly darker blue on hover */
}

.submit-btn:active {
  transform: scale(0.97); /* Subtle press effect */
}

.submit-btn:disabled {
  background: #444;
  color: #999;
  cursor: not-allowed;
}
