.report-page {
  position: relative;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #ddd;
}

.report-page__background {
  position: absolute;
  inset: 0;
  z-index: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.report-page__scores {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.report-page__score {
  width: 30px;
  text-align: center;
  color: #2d6a2d;
}

.report-page__score--active {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2d6a2d;
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.image-preview { margin-top: 10px; }
.preview-img { max-width: 200px; }
.card { border: 1px solid #ddd; padding: 15px; margin-bottom: 30px; }

.hidden { display: none; }
.visible { display: block; }
.lang-hidden { display: none; }

.flex-gap {
  display: flex;
  gap: 1rem;
}

.inline-checkbox { display: inline-block; margin-right: 10px; }
