﻿#bilderliste {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#auswertung {
  width: 100%;
}

.bild-wrapper {
  width: min(320px, 100%);
}

.vorschlagsbild {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
  cursor: pointer;
}

.vorschlagsbild.selected {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 45%, white);
}

.bild-checkbox {
  display: none;
}
