* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 
 * 011-ui-css-base.mdc Regel 001
 * Erlaubte html/body Definitionen für Light Mode Override
 */
html {
    background-color: #ffffff;
    color-scheme: light;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--color-text);
    color-scheme: light;
    font-family: var(--font-family-primary);
    line-height: var(--line-height-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Basic Layout Area Config */
.base-layout-main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/*
 * Projektweit keine Schatten (briefing/design.md 003.007).
 * Elevation nur über Rand und Fläche; Fokus über outline.
 */
body,
body * {
    box-shadow: none !important;
    text-shadow: none !important;
}

body *:focus-visible {
    outline: 2px solid var(--color-link);
    outline-offset: 2px;
}