/* 面談評価 UI（10点満点） */
.yce-eval-guide {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #eff6ff;
  font-size: 0.65rem;
  line-height: 1.45;
  color: #1e3a5f;
}
.yce-eval-guide-title {
  font-weight: 800;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}
.yce-eval-guide-list {
  margin: 0;
  padding-left: 1rem;
}
.yce-eval-guide-list li { margin-bottom: 0.15rem; }
.yce-eval-picker {
  margin-top: 0.75rem;
  padding: 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fafafa;
}
.yce-eval-picker-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a202c;
}
.yce-eval-item-hint {
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.yce-eval-picker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.25rem;
  margin-top: 0.5rem;
}
@media (min-width: 480px) {
  .yce-eval-picker-grid { grid-template-columns: repeat(10, minmax(0, 1fr)); }
}
.yce-eval-picker-grid .eval-pick {
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  padding: 0.35rem 0;
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff;
  color: #1a202c;
  cursor: pointer;
}
.yce-eval-picker-grid .eval-pick:hover { background: #f0f4ff; }
.yce-eval-picker-grid .eval-pick.is-selected {
  background: #003087;
  border-color: #003087;
  color: #fff;
}
.yce-eval-selected-hint {
  font-size: 0.6rem;
  color: #64748b;
  margin-top: 0.35rem;
}
.yce-eval-selected-hint.is-set {
  color: #003087;
  font-weight: 700;
}
.yce-eval-comment-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 0.5rem;
}
.yce-eval-comment {
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  resize: vertical;
  min-height: 2.5rem;
}
.yce-eval-result-list {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 640px) {
  .yce-eval-result-list {
    grid-template-columns: 1fr;
  }
}
.yce-eval-result-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.45rem 0.55rem;
  background: #fff;
  font-size: 0.7rem;
  min-width: 0;
}
.yce-eval-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}
.yce-eval-result-label {
  font-weight: 800;
  color: #1a202c;
  font-size: 0.6875rem;
  line-height: 1.25;
  min-width: 0;
}
.yce-eval-score-badge {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 900;
  color: #003087;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.yce-eval-score-badge-den {
  font-size: 0.625rem;
  font-weight: 700;
  color: #64748b;
}
.yce-eval-score-badge--empty {
  color: #a0aec0;
}
.yce-eval-bar {
  height: 0.28rem;
  background: #e2e8f0;
  border-radius: 9999px;
  margin-top: 0.35rem;
  overflow: hidden;
}
.yce-eval-bar-fill {
  height: 100%;
  background: #003087;
  border-radius: 9999px;
}
.yce-eval-score-num {
  font-size: 0.6rem;
  color: #64748b;
  margin-top: 0.2rem;
}
.yce-eval-result-nocomment {
  font-size: 0.65rem;
  color: #a0aec0;
  margin-top: 0.35rem;
  font-style: italic;
}
.yce-eval-result-comment {
  font-size: 0.6875rem;
  color: #1a202c;
  margin-top: 0.35rem;
  padding: 0.35rem 0.45rem;
  line-height: 1.45;
  white-space: pre-wrap;
  background: #f0f4ff;
  border-left: 2px solid #003087;
  border-radius: 0 0.3rem 0.3rem 0;
}
.yce-eval-result-comment::before {
  content: 'コメント: ';
  font-weight: 800;
  color: #003087;
}
