.input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.checkbox {
  margin: 0;
}
.input-text {
  flex: 1;
  padding: 5px;
}
.custom-feedback-card {
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  padding: 0.5rem;
  min-width: 150px;
  max-width: 300px;
  flex-grow: 1;
}
.custom-feedback-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.custom-option-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.custom-feedback-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 0.5rem;
}
.radio-label {
  min-width: 60px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  font-size: 0.85rem;
}
.required-tag {
  font-size: 0.7rem;
  padding: 2px 4px;
}
.custom-option-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-right: 8px;
}