.fg-report {
  margin: 16px 10px 20px;
  padding: 14px;
  border: 2px solid #d0006c;
  background: #fff;
}
.fg-report h3 {
  margin: 0 0 12px;
  background: #d0006c;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.fg-report__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fg-report__score {
  width: 110px;
  height: 110px;
  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 4px 12px rgba(208, 0, 108, 0.3);
  text-align: center;
}
.fg-score__label {
  font-size: 0.75rem;
  font-weight: bold;
}
.fg-score__value {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin: 3px 0;
}
.fg-score__max {
  font-size: 0.65rem;
  opacity: 0.8;
}
.fg-report__chart {
  width: 100%;
  display: flex;
  justify-content: center;
}
.fg-radar {
  width: 240px;
  height: 240px;
}
.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: 10px;
  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 {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
}
.fg-report__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fg-report__legend-color {
  width: 12px;
  height: 12px;
  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: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0c4d8;
}
.fg-report__details h4 {
  font-size: 1rem;
  color: #d0006c;
  text-align: center;
  margin-bottom: 10px;
}
.fg-report__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fg-report__entry {
  border-left: 4px solid #d0006c;
  background: #fff7fa;
  padding: 8px 10px;
  border-radius: 6px;
}
.fg-report__points {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.fg-report__comment {
  color: #555;
  line-height: 1.4;
  font-size: 0.85rem;
}
.fg-report__empty {
  text-align: center;
  color: #777;
  padding: 10px;
  border: 1px dashed #f0c4d8;
  border-radius: 6px;
  background: #fff;
  font-size: 0.85rem;
}
.fg-report.is-empty {
  display: none;
}
