#recipe-category-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-content: center; /* center short rows */
  }
  
  @media (max-width: 1024px) {
    #recipe-category-tags {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    #recipe-category-tags {
      grid-template-columns: 1fr;
    }
  }

.search-input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #333;
  box-shadow: 0 0 0 1px #ccc, 0 2px 6px rgba(0, 0, 0, 0.05);
}