/* graph-style.css */

/* Container for the radar chart */
#kolbRadarContainer {
  margin-top: 40px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Radar chart canvas - fully responsive */
#kolbRadarChart {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 1 / 1;
  /* Keeps it square on all devices */
  margin: 0 auto;
}

/* Preference summary section below the chart */
.preference-summary {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

.preference-summary .preference-label {
  font-weight: bold;
  display: inline-block;
  width: 100px;
}

.preference-summary .Activist {
  color: #F5B041;
}

.preference-summary .Reflector {
  color: #8E44AD;
}

.preference-summary .Theorist {
  color: #2E86C1;
}

.preference-summary .Pragmatist {
  color: #27AE60;
}