/* Allgemeine Body / HTML Einstellungen */
html, body {
    height: 100%;
    margin: 0;
}

#mainContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#topBar {
    flex: 0 0 auto; /* fixe Höhe */
    padding: 0.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

#scriptOutput {
    flex: 1 1 auto; /* füllt den restlichen Platz */
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    overflow: auto; /* Scroll nur falls Inhalt zu groß */
    background: #fff;
    white-space: pre-wrap;
    font-family: 'Courier New', Courier, monospace;
}

/* Login-Formular zentrieren */
#loginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#loginContainer .container {
    max-width: 400px;
}
