/* =========================
   REVIEW CARD
========================= */
.card {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
  background: #fff;
}

/* =========================
   ADMIN REPLY BOX
========================= */
.reply {
  background: #f4f4f4;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

/* =========================
   MEDIA (HORIZONTAL IMAGES)
========================= */
.media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.media img {
  width: 80px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* =========================
   STAR RATING (FORM)
========================= */
.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.stars span {
  cursor: pointer;
  font-size: 24px;
  color: #ccc;
  transition: 0.2s ease;
}

.stars span.active {
  color: #000;
}

/* =========================
   PAGINATION
========================= */
#pagination {
  margin-top: 20px;
}

.page-btn {
  border: 1px solid #ccc;
  padding: 6px 12px;
  margin-right: 6px;
  cursor: pointer;
  display: inline-block;
  border-radius: 4px;
  background: #fff;
  transition: 0.2s ease;
}

.page-btn:hover {
  background: #000;
  color: #fff;
}

.page-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* =========================
   SIMPLE REVIEW SUMMARY (FINAL)
========================= */

.wctr-summary-simple {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  margin: 30px auto;
  max-width: 400px;
  text-align: center;
}

.wctr-summary-simple .wctr-stars {
  font-size: 22px;
  margin-bottom: 8px;
  color:black;
}

.wctr-summary-simple .wctr-big {
  font-size: 34px;
  font-weight: 700;
  color:green;
}

.wctr-summary-simple .wctr-count {
  font-size: 28px;
  color:red;
  margin-top: 8px;
}

/* FORCE REMOVE OLD RATING LIST */
.wctr-summary-simple + * {
  display: none !important;
}