.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.googlePlayGreen {
  color: #01875f;
}

.googlePlayBgGreen {
  background-color: #01875f;
}

.googlePlayButton {
  background-color: #01875f;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.googlePlayButton:hover {
  background-color: #016b4c;
}

.outlinedButton {
  border: 1px solid #dadce0;
  color: #01875f;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.outlinedButton:hover {
  background-color: #f8f9fa;
}

.appIcon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.ratingBar {
  height: 8px;
  background-color: #e8eaed;
  border-radius: 4px;
  overflow: hidden;
  flex-grow: 1;
}

.ratingProgress {
  height: 100%;
  background-color: #01875f;
  border-radius: 4px;
}

.secondaryText {
  color: #5f6368;
  font-size: 14px;
}

.sectionTitle {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chip {
  padding: 6px 12px;
  border: 1px solid #dadce0;
  border-radius: 20px;
  font-size: 12px;
  color: #5f6368;
}

@media (min-width: 768px) {
  .appIcon {
    width: 96px;
    height: 96px;
  }
}
