/* Grundlegende App-Optik */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}

/* Hilfsklasse zum Ein-/Ausblenden von Elementen */
.hidden {
    display: none !important;
}

/* Styling für die verschiedenen Ansichten */
#login-view, #app-view {
    padding: 20px;
    max-width: 400px;
    margin: 40px auto;
}

/* Buttons groß und touch-freundlich gestalten */
button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    background-color: #007aff;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

/* ... weitere Styles für Formulare, Header etc. ... */
.secondary-button {
    background-color: #6c757d; /* Ein neutrales Grau */
    margin-top: 20px;
}