.review-radar-container {
  background: white;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-family: 'Arial', sans-serif;
  border: 1px solid #e0e0e0;
}

.display-none {
  display: none !important;
}

.radar-header {
  text-align: center;
  margin-bottom: 20px;
}

.radar-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #333;
}

.radar-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.status-icon {
  background: #666;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.radar-chart-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
}

.radar-left-section {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.total-score-display {
  text-align: center;
}

.score-circle {
  background: linear-gradient(135deg, #ff6600, #ff8800);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.score-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.score-value {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.score-max {
  font-size: 12px;
  opacity: 0.8;
}

.radar-chart-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.radar-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.legend-color.high-zone {
  background: rgba(255, 165, 0, 0.3);
}

.legend-color.current-eval {
  background: #ff6600;
  border-radius: 50%;
}

.radar-info {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333;
}

.info-label {
  font-size: 14px;
  color: #ccc;
  margin-right: 5px;
}

.good-points-details {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.details-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.points-categories {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.category-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ff6600;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 20px;
}

.star.empty {
  color: #ddd;
}

.points-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.points-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  font-size: 14px;
}

.points-list li:last-child {
  border-bottom: none;
}

.points-list li:before {
  content: "•";
  color: #ff6600;
  font-weight: bold;
  margin-right: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .review-radar-container {
    padding: 0;
  }

  .radar-chart-wrapper {
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .radar-left-section {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    flex: none;
  }

  .total-score-display {
    transform: scale(0.6);
    transform-origin: top left;
  }

  .score-circle {
    width: 80px;
    height: 80px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
  }

  .score-value {
    font-size: 20px;
  }

  .score-label {
    font-size: 9px;
  }

  .score-max {
    font-size: 7px;
  }

  .radar-chart-container {
    width: 300px;
    height: 300px;
  }

  .points-categories {
    gap: 15px;
  }

  .category-section {
    padding: 15px;
  }
}
