/* Änderungsprotokoll: 2026-07-17 | parent-agent | @skill-css-rules, @skill-change-provenance | Strahlend weißer Seitenhintergrund */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html | Änderungsprotokoll: 2026-07-23 | cursor-agent | @skill-css-rules, @skill-change-provenance | Kein horizontaler Overflow (011-ui-css-mobile) */
html {
    background-color: var(--color-background);
    color-scheme: light;
    overflow-x: hidden;
}

/* body | Änderungsprotokoll: 2026-07-23 | cursor-agent | @skill-css-rules, @skill-change-provenance | Kein horizontaler Overflow (011-ui-css-mobile) */
body {
    background-color: var(--color-background);
    color: var(--color-text);
    color-scheme: light;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.base-layout-main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--color-background);
}

.base-layout-content-area {
    flex: 1 0 auto;
}
