.fg-report {
  margin: 25px 0;
  padding: 20px;
  border: 2px solid #d0006c;
  background: #fff;
}
.fg-report h3 {
  margin: 0 0 20px;
  background: #d0006c;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.fg-report__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fg-report__score {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0006c, #ff6d78);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(208, 0, 108, 0.3);
  text-align: center;
}
.fg-score__label {
  font-size: 0.85rem;
  font-weight: bold;
}
.fg-score__value {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 4px 0;
}
.fg-score__max {
  font-size: 0.75rem;
  opacity: 0.8;
}
.fg-report__chart {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}
.fg-radar {
  width: 320px;
  height: 320px;
}
.fg-radar__grid-line {
  fill: none;
  stroke: #f0c4d8;
  stroke-width: 1;
}
.fg-radar__axis {
  stroke: #d0006c;
  stroke-width: 1;
  opacity: 0.5;
}
.fg-radar__label {
  fill: #4a4a4a;
  font-size: 12px;
  font-weight: bold;
}
.fg-radar__zone {
  fill: rgba(208, 0, 108, 0.12);
  stroke: rgba(208, 0, 108, 0.35);
  stroke-width: 2;
}
.fg-radar__current {
  fill: rgba(255, 109, 120, 0.3);
  stroke: #ff6d78;
  stroke-width: 3;
}
.fg-radar__point {
  fill: #d0006c;
  stroke: #fff;
  stroke-width: 2;
}
.fg-report__legend {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
}
.fg-report__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fg-report__legend-color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: rgba(208, 0, 108, 0.3);
}
.fg-report__legend-color.is-current {
  background: #ff6d78;
  border-radius: 50%;
}
.fg-report__details {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0c4d8;
}
.fg-report__details h4 {
  font-size: 1.2rem;
  color: #d0006c;
  text-align: center;
  margin-bottom: 15px;
}
.fg-report__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fg-report__entry {
  border-left: 4px solid #d0006c;
  background: #fff7fa;
  padding: 10px 12px;
  border-radius: 6px;
}
.fg-report__points {
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.fg-report__comment {
  color: #555;
  line-height: 1.4;
}
.fg-report__empty {
  text-align: center;
  color: #777;
  padding: 10px;
  border: 1px dashed #f0c4d8;
  border-radius: 6px;
  background: #fff;
}
.fg-report.is-empty .fg-report__chart,
.fg-report.is-empty .fg-report__legend {
  display: none;
}
.fg-report.is-empty {
  display: none;
}
@media (max-width: 768px) {
  .fg-report {
    padding: 15px;
  }
  .fg-report__inner {
    flex-direction: column;
    align-items: center;
  }
  .fg-radar {
    width: 260px;
    height: 260px;
  }
}
