/* === Reflection: inline options === */
.reflektion-options {
  display: flex;
  flex-direction: row;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.signal-neutral {
  background: transparent;
  border-left: none;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: var(--space-4);
}

.signal-neutral strong {
  color: var(--color-text-heading);
}

.reflektion-option {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, opacity 0.2s;
  font-size: var(--font-size-small);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  user-select: none;
}

.reflektion-option:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.015);
}

.reflektion-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  margin-top: 3px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.reflektion-text {
  flex: 1;
}

.reflektion-option:hover .reflektion-radio {
  border-color: rgba(69, 143, 133, 0.5);
}

.reflektion-option.selected {
  border-color: rgba(69, 143, 133, 0.4);
  background: rgba(69, 143, 133, 0.06);
  color: var(--color-text-primary);
}

.reflektion-option.selected .reflektion-radio {
  border-color: #458f85;
  background: #458f85;
  box-shadow: inset 0 0 0 2px white;
}

.reflektion-option.dimmed {
  opacity: 0.35;
}

.reflektion-option.dimmed:hover {
  opacity: 0.55;
}

/* Stack vertically on small screens */
@media (max-width: 600px) {
  .reflektion-options {
    flex-direction: column;
  }
}
