.feedback-manual-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f72;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-top: 8px;
}

.feedback-presets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 1px;
  padding: 0px 10px;
}

.feedback-preset {
  padding: 10px 11px;
  border-radius: 7px;
  border: 1.5px solid #d9d0c4;
  background: #f3eee4;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #4f6470;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
}

.feedback-preset:hover {
  background: #e7ecef;
  border-color: #486959;
  color: #486959;
}

.feedback-preset.active {
  background: #486959;
  border-color: #486959;
  color: #fff;
}

#feedback-frage {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1.5px solid #D9D0C4;
  font-family: inherit;
  margin-left: 5px;
}

.set-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.set-btn {
  flex: none;
  width: 78px;
  height: 78px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  padding: 0;
  background: #f5f5f0;
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.set-btn:hover {
  background: #eaeae4;
}

.set-btn.aktiv {
  border-color: #4a90d9;
  background: #eef4fc;
}

.set-btn span {
  display: block;
  font-size: 10px;
  color: #888;
  margin-top: 2px;
}

.feedback-add-btn {
  display: none;
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  margin-top: 10px;
  background: #486959;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}


.feedback-add-btn:hover {
  background: #3a5547;
}

.feedback-widget {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
}

.feedback-widget-frage {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a18;
}

.feedback-widget-chart {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.feedback-widget-spalte {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.feedback-widget-balken-wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.feedback-widget-balken {
  width: 100%;
  height: 0px;
  border-radius: 8px 8px 0 0;
  transition: height 0.3s ease;
}

.feedback-widget-emoji {
  font-size: 62px;
  margin-top: 8px;
}

.feedback-widget-zahl {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a18;
  margin-top: 4px;
}