.apr-load-more-btn {
	background: #0d8bcd;
    color: white;
    width: 100%;
    border: 1px solid #ffffff;
    padding: 10px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 12px;
}
.admin-product-reviews {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.apr-review {
  display: flex;
  gap: 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.apr-review.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.apr-review-body {
  flex: 1;
}

.apr-date {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 12px;
  color: #888;
}

.apr-product img {
  width: 80px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.apr-product:hover img {
  transform: scale(1.05);
}

.apr-product-title {
  display: block;
  text-align: left;
  font-size: 13px;
  margin-top: 5px;
  color: #333;
  width: 100px;
}

.apr-rating {
  color: #ffb400;
  font-size: 16px;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .apr-review {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .apr-date {
    position: static;
    margin-bottom: 8px;
  }
  .apr-product-title {
	width: 100%;  
  }
}