/* RetroDad Quest Ratings 1.2 - clean interactive star picker */
.rdg-rating-panel{
  margin:12px 0 16px;
  padding:12px 14px;
  background:#090f14;
  border:1px solid #394854;
  border-radius:6px;
}
.rdg-rating-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:7px 0;
}
.rdg-rating-label{
  min-width:126px;
  color:#d7e0e6;
  font-size:12px;
  font-weight:800;
}
.rdg-stars{
  display:inline-flex;
  gap:3px;
}
.rdg-star{
  position:relative;
  display:inline-block;
  font-size:21px;
  line-height:1;
  color:#4d5962;
  text-shadow:0 1px 0 #000;
}
.rdg-star::before{content:'★'}
.rdg-star.full{color:#ffd34d}
.rdg-star.half{color:#4d5962}
.rdg-star.half::after{
  content:'★';
  position:absolute;
  left:0;
  top:0;
  width:50%;
  overflow:hidden;
  color:#ffd34d;
}
.rdg-rating-value{
  color:#ffd34d;
  font-weight:800;
  font-size:12px;
}
.rdg-rating-note{
  font-size:11px;
  color:#8f9aa3;
}

/* User picker: five clean interactive stars only */
.rdg-user-picker{
  display:inline-flex;
  align-items:center;
  gap:3px;
  padding:3px 0;
  user-select:none;
  touch-action:manipulation;
}
.rdg-rate-star{
  position:relative;
  display:inline-block;
  width:27px;
  height:27px;
  padding:0;
  margin:0;
  border:0;
  background:transparent;
  color:#46515b;
  font:inherit;
  font-size:27px;
  line-height:27px;
  cursor:pointer;
  text-align:center;
  text-shadow:0 1px 0 #000;
  transition:transform .08s ease, filter .12s ease;
}
.rdg-rate-star::before{content:'★'}
.rdg-rate-star:hover,
.rdg-rate-star:focus-visible{outline:none}
.rdg-rate-star:focus-visible{
  filter:drop-shadow(0 0 4px rgba(255,211,77,.85));
}
.rdg-rate-star.rdg-preview-full,
.rdg-rate-star.rdg-selected-full{
  color:#ffd34d;
}
.rdg-rate-star.rdg-preview-half,
.rdg-rate-star.rdg-selected-half{
  color:#46515b;
}
.rdg-rate-star.rdg-preview-half::after,
.rdg-rate-star.rdg-selected-half::after{
  content:'★';
  position:absolute;
  left:0;
  top:0;
  width:50%;
  overflow:hidden;
  color:#ffd34d;
  pointer-events:none;
}
.rdg-user-picker.is-hovering .rdg-rate-star[class*="rdg-preview"]{
  transform:translateY(-1px) scale(1.05);
}
.rdg-user-picker.is-saving{opacity:.62;pointer-events:none}
.rdg-rating-feedback{
  min-width:64px;
  font-size:11px;
  color:#8f9aa3;
}
.rdg-rating-feedback.is-saved{color:#ffd34d;font-weight:800}

.quest-card .rdg-rating-panel{margin:12px 0 0;padding:9px}
.quest-card .rdg-rating-label{min-width:100px;font-size:10px}
.quest-card .rdg-star{font-size:16px}
.quest-card .rdg-rate-star{
  width:21px;
  height:21px;
  font-size:21px;
  line-height:21px;
}
.quest-card .rdg-rating-feedback{font-size:10px}

@media (hover:none){
  .rdg-rate-star{transition:none}
}
