/* Center the whole block on the page */
.wp-block-myplugin-rating-box {
  display: flex;
  justify-content: center;
}

/* The actual rating box (visual part) */
.wp-block-myplugin-rating-box .rating-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  padding: 1rem 10rem;
  border: 1px solid #ee2e3c;
  box-shadow: 0 2px 6px rgba(238, 46, 60, 0.15);
  border-radius: 3px;
  line-height: 1.2;
  position: relative;
}

/* Image shouldn’t stretch full width */
.rating-box__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

/* Label styling */
.rating-box__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.rating-box__label .rating-box__score {
  color: #ee2e3c;
  font-weight: bold;
  margin-left: 4px;
}
