/* Mobile-First: Basis-Styles gelten für mobile Geräte */
/* VERPFLICHTEND: Horizontal Overflow verhindern (Regel 011-ui-css.mdc Regel 018.001) */
body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
    right: 0;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.main-content {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 15px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}


/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .main-content {
        padding: 20px;
        max-width: 100%;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .main-content {
        max-width: 1200px;
        padding: 20px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .main-content {
        max-width: 1200px;
    }
}