/* SPDX-License-Identifier: Apache-2.0  */
#feedback-container {
  position: absolute;
  background-color: var(--bkg-color);

  #feedback-button img {
    content: url('icons/feedback-comment.svg');
  }
  #feedback-button:hover img {
    content: url('icons/feedback-comment-add.svg');
  }
}
.feedback-popup,
.thankyou-popup {
  background-color: var(--bkg-color);
  min-width: 8rem;
  min-height: 1.5rem;
  border: var(--app-standard-border);
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  width: max-content;
}
