/* Tag styling for consistent look across the site */
.tag-link {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 9999px;
  background-color: #e9f5ff;
  color: #0066cc;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

.tag-link:hover {
  background-color: #cce5ff;
}

/* For smaller tag links on list pages and search results */
.tag-link-small {
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
} 