/**
 * Quality Assurance Checks.
 */
.user-logged-in .image-wrapper {
  border: 1px solid red;
  display: inline-block;
  padding: 8px;
  position: relative;
  max-width: 100%;
}

.user-logged-in .image-wrapper.no-alt::before {
  content: "Warning: This image lacks an alt attribute.";
  color: red;
  font-size: 0.875rem;
  position: absolute;
  /* top: -16px;
  left: 4px; */
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: white;
  padding: 2px 6px;
  border: 1px solid red;
  border-radius: 3px;
}

.user-logged-in .image-wrapper.error::before {
  content: "There was an error loading this image.";
  color: red;
  font-size: 0.875rem;
  position: absolute;
  /* top: -16px;
  left: 4px; */
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: white;
  padding: 2px 6px;
  border: 1px solid red;
  border-radius: 3px;
}

