/* MovieBase Ratings – minimal, theme-friendly */
.mbp-rating-box{
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
}
.mbp-rating-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: .75rem;
}
.mbp-rating-head h3{
  margin:0;
  font-size: 1.1rem;
}
.mbp-rating-meta{
  font-size: .95rem;
  opacity: .85;
  display:flex;
  gap:.5rem;
}
.mbp-stars{
  margin-top:.6rem;
  display:flex;
  gap:.25rem;
}
.mbp-star{
  appearance:none;
  border: 1px solid rgba(0,0,0,.15);
  background: transparent;
  border-radius: 8px;
  padding: .35rem .5rem;
  cursor:pointer;
  line-height: 1;
  font-size: 1.2rem;
}
.mbp-star.is-on{
  background: rgba(0,0,0,.06);
}
.mbp-star:disabled{
  opacity:.5;
  cursor:not-allowed;
}
.mbp-login-hint, .mbp-your-rating{
  margin:.6rem 0 0;
  font-size:.95rem;
}
.mbp-toast{
  margin-top:.6rem;
  padding:.5rem .6rem;
  border-radius: 8px;
  background: rgba(0,0,0,.06);
  font-size:.95rem;
}
.mbp-toast.is-error{
  background: rgba(255,0,0,.08);
}
