
.main-content {
    position: absolute;
    top: 0;
    bottom: 56px;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #f7f7f7;
}

/* Hauptcontainer */
.page-wrapper {
    position: relative;
    margin: 20px auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Layout für zwei Boxen */
.body-row-two {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Linke Box mit Formular */
.left-box {
    flex: 1;
    background: #164a81;
    border: none;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.left-box h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Formularfelder schöner */
.left-box form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.left-box label {
    font-weight: bold;
}

.left-box input[type="text"],
.left-box input[type="email"],
.left-box input[type="number"],
.left-box textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.left-box textarea {
    min-height: 100px;
    resize: vertical;
}

.left-box input[type="checkbox"] {
    margin-right: 0.5rem;
}

.left-box button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #00cc66;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
}

.left-box button:hover {
    background-color: #009944;
}

/* Rechte Box mit Textdatei */
.right-box {
    flex: 1;
    background: #3e7d65;
    border: none;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    font-family: Georgia, serif;
}

.right-box h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.right-box .text-aus-datei {
    white-space: pre-line;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .body-row-two {
        flex-direction: column;
    }
}
