/* --- Badge für KI-generierte Bilder ---*/

.ai-gen, .ai-edt {
  position: relative;
  align-self: start;
}

.ai-gen::after {
    content: var(--ail-gen-label, "KI-generiert");
  position: absolute;
  right: 5%;
  bottom: 12px;
  background: #1B1B2F50;
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  padding: 4px 9px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 2;
}

.ai-edt::after {
    content: var(--ail-edt-label, "KI-verändert");
  position: absolute;
  right: 5%;
  bottom: 12px;
  background: #1B1B2F50;
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  padding: 4px 9px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 2;
}
