/* Remove purple circle background from like counts - with maximum specificity */
html body .page-content .photo-container .photo-likes-count,
html body .preview-container .photo-likes-count,
html body .likes-count,
html body .photo-likes-count,
.photo-likes-count {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  box-shadow: none !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  bottom: 5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  top: auto !important;
}

/* Target the specific likes count elements in the photo grid */
.col-4 .photo-container .photo-likes-count {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
}

/* Ensure heart icon is visible */
.photo-likes-count i {
  color: #ff4d4d !important;
}

/* Style like counts to match view counts */
.preview-container .likes-count,
.likes-count,
.photo-likes-count {
  position: absolute !important;
  background: rgba(0, 0, 0, 0.5) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-radius: 15px !important;
  padding: 3px 10px !important;
  color: white !important;
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  z-index: 10 !important;
  bottom: 5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
}
