.feedback-buttons {
  display: flex;
  gap: 2px;
  margin-top: 8px;
  margin-left: -8px;
  margin-bottom: -2px;
}

.feedback-buttons__button {
  width: 28px;
  height: 28px;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-buttons__button:hover {
  background-color: #f0f0f0;
}

.feedback-buttons__button:active {
  background-color: #e0e0e0;
}

.button--loading {
  background-color: #f0f0f0;
  border-color: gray;
}
.button--selected {
  background-color: #c7e9c7;
  border-color: green;
}
.button--error {
  background-color: #ff9191;
  border-color: red;
}
