/* Container für das Suchsel-SVG */
.wordsearch-container,
.wordsearch-container-empty {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    max-height: 80vh;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    padding: 0.5rem;
}

/* SVG soll seine natürliche Größe behalten, der Container scrollt */
.wordsearch-container svg,
.wordsearch-container-empty svg {
    display: block;
    height: auto;
    width: auto;
    min-width: max-content; /* Container scrollt bis volle SVG-Breite sichtbar ist */
}