.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 400px;
  margin: 0 auto;
  display: block;
} 

.page-bg {
  background: #e6fff3;

}

/* Pagination Styles (copied from stationery.css for POS page) */
.pagination .page-link {
  color: #198754;
  border-color: #dee2e6;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.pagination .page-item.active .page-link {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.discount-circle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 2;
}