/* vetListing.css */

.listing-page {
  padding: 20px;
}

.search-bar {
  margin-bottom: 20px;
  text-align: center;
}

.vet-list {
  display: flex;
  flex-wrap: wrap;
}

.vet-card {
  margin-bottom: 20px;
}

.vet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 20px;  /* Adds space between the image and the card top edge *
}

@media (max-width: 768px) {
  .vet-list .ant-col {
    width: 100% !important;
  }
}
