html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

#app {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 12px;
    box-sizing: border-box;
}

/* Hauptbereich: 2 Spalten */
.main {
    flex: 1;
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 16px;
    row-gap: 8px;
    overflow: hidden; /* wichtig */
}

/* Überschriften */
.main h2 {
    margin: 0;
}

/* Filters */
section[data-module="filters"] {
    grid-column: 1;
    grid-row: 2;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
    padding: 8px;
}

/* Reset-Button */
button[data-action="reset-filters"] {
    grid-column: 1;
    grid-row: 3;
}

/* Results */
section[data-module="results"] {
    grid-column: 2;
    grid-row: 2;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 8px;
}

section[data-module] ul {
    margin: 0;
    padding-left: 18px;
    max-width: 100%;
}

section[data-module] li {
    max-width: 100%;
    overflow-wrap: anywhere; /* moderne Lösung */
    word-break: break-word; /* Fallback */
}

section[data-module="results"] li {
    margin: 10px;
}


/* Load-more-Button */
button[data-action="load-more"] {
    grid-column: 2;
    grid-row: 3;
}

/* Debug */
pre[data-debug] {
    max-height: 160px;
    overflow: auto;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid #ddd;
    white-space: pre-wrap;
}
