.blazor-thumbnail {
  width: 220px;          /* vaste breedte */
  height: 220px;         /* vaste hoogte */
  display: flex;         /* zodat de svg netjes gecentreerd */
  align-items: center;   /* verticaal centreren */
  justify-content: center; /* horizontaal centreren */
  border: 1px solid #ddd; /* optioneel, nette rand */
  background: #fff;       /* optioneel, achtergrond */
  overflow: hidden;       /* voorkomt dat de svg uitsteekt */
  border-radius: 4px;     /* optioneel, afgeronde hoekjes */
}

.blazor-thumbnail svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}