html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#_dash-app-content {
    height: 100%;
}

.warnung-rot {
    color: red;
}

/* Mobile Scrolling Fix */
html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#_pages_content {
    min-height: 100vh;
    overflow-y: auto;
}

/* Container Fix für Mobile */
.container-fluid {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Bessere Touch-Targets für Mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 10px 15px;
    }
    
    .form-control, .form-select {
        min-height: 44px;
    }
    
    /* Verhindere horizontales Scrollen */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}