.crop-matrix-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.crop-matrix-controls select {
  padding: 0.45rem 0.7rem;
  border-radius: 0.45rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  background: var(--md-default-bg-color);
  color: var(--md-default-fg-color);
}

.crop-matrix-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: start;
  margin: 1rem 0 2rem;
}

.crop-card,
.crop-group-card {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.8rem;
  padding: 1rem;
  background: var(--md-code-bg-color);
}

.crop-card svg {
  width: 100%;
  height: auto;
  min-height: 320px;
}

.crop-kiviat-ring {
  fill: none;
  stroke: rgba(92, 130, 76, 0.42);
  stroke-width: 1;
}

.crop-kiviat-axis {
  stroke: rgba(92, 130, 76, 0.55);
  stroke-width: 1;
}

.crop-kiviat-label {
  fill: currentColor;
  font-size: 12px;
  opacity: 0.82;
}

.crop-kiviat-shape {
  fill: rgba(76, 130, 65, 0.28);
  stroke: rgba(76, 130, 65, 0.95);
  stroke-width: 2.5;
}

.crop-kiviat-dot {
  fill: rgba(76, 130, 65, 0.95);
  stroke: var(--md-default-bg-color);
  stroke-width: 1.5;
}

.crop-scatter-card svg {
  min-height: 360px;
}

.crop-scatter-grid {
  stroke: var(--md-default-fg-color--lightest);
  stroke-width: 1;
}

.crop-scatter-axis {
  stroke: var(--md-default-fg-color--light);
  stroke-width: 1.4;
}

.crop-scatter-dot {
  fill: rgba(76, 130, 65, 0.9);
  stroke: var(--md-default-bg-color);
  stroke-width: 1.4;
}

.crop-scatter-name,
.crop-scatter-label,
.crop-scatter-tick {
  fill: currentColor;
}

.crop-scatter-name {
  font-size: 11px;
  opacity: 0.82;
}

.crop-scatter-label {
  font-size: 13px;
  font-weight: 700;
}

.crop-scatter-tick {
  font-size: 11px;
  opacity: 0.72;
}

.crop-latin {
  font-style: italic;
  opacity: 0.74;
}

.crop-score-table,
#crop-function-matrix,
#crop-score-comparison {
  width: 100%;
  border-collapse: collapse;
}

.crop-score-table td,
#crop-function-matrix th,
#crop-function-matrix td,
#crop-score-comparison th,
#crop-score-comparison td {
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding: 0.45rem;
}

#crop-function-matrix td,
#crop-score-comparison td {
  text-align: center;
}

#crop-function-matrix td.yes {
  font-weight: 700;
  color: #4c8241;
}

.crop-table-wrap {
  overflow-x: auto;
}

.crop-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.crop-group-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .crop-matrix-layout {
    grid-template-columns: 1fr;
  }
}
