.rurl-domain-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 800px;
  margin: 0 auto;
  padding: 0px 0px 50px 0px;
  font-family: "Poppins", sans-serif;
  color: #FFF;
}
.rurl-domain-review-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}
.rurl-domain-review-item:hover {
  border-color: #2068F5;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.rurl-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rurl-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 100% !important;
  border: 3px solid #2068F5 !important;
  object-fit: cover;
}
.rurl-review-author {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}
.rurl-review-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rurl-review-content {
  font-size: 1rem;
  color: #FFF;
  margin: 1.25rem 0;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.rurl-review-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, #2068F5 0%, rgba(32,104,245,0.5) 100%);
  border-radius: 8px 0 0 8px;
}
.rurl-review-content::after {
  /* content: '\201C'; */
  position: absolute;
  right: 10px; top: -8px;
  font-size: 42px; line-height: 1; color: #FFF; opacity: 0.08;
  pointer-events: none; font-family: Georgia, 'Times New Roman', serif; font-weight: 600;
}
.rurl-review-content-title {
  font-size: 1rem;
  color: #FFF;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.rurl-review-date {
  font-size: 0.8rem;
  color: #666;
  font-style: normal;
  text-align: right;
}
.rurl-star-rating {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.rurl-star {
  width: 18px;
  height: 18px;
  fill: #ddd;
}
.rurl-star.filled {
  fill: #2068F5;
}
.rurl-pagination-wrapper {
  clear: both;
  margin-top: 2rem;
  padding: 1rem 0;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rurl-pagination {
  text-align: center;
}
.rurl-pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.rurl-pagination li {
  display: inline-block;
}
.rurl-pagination a,
.rurl-pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.rurl-pagination a:hover {
  border-color: #2068F5;
  color: #2068F5;
}
.rurl-pagination .current {
  background: #2068F5;
  color: #fff;
  border-color: #2068F5;
}
/* Header layout: avatar/rating on left, amount on right */
.rurl-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.rurl-review-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Amount block styling */
.rurl-review-amount {
  text-align: right;
  font-family: "Poppins", sans-serif;
}

.rurl-amount-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: -0.3rem;
}

.rurl-amount-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: #2068F5;
}

/* Empty state */
.rurl-no-reviews {
  max-width: 800px;
  margin: 50px auto;
  padding: 2rem 2.5rem;
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.rurl-no-reviews:hover {
  border-color: #2068F5;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.rurl-no-reviews h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.rurl-no-reviews p {
  font-size: 1rem;
  color: #666;
}
