body {
    font-family: sans-serif;
    background: #f4f4f4;
    padding: 0px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Textareas im Editor standardmäßig höher machen */
.section-block textarea {
    min-height: 150px;
    /* Grundhöhe */
    font-family: monospace;
    /* Damit [G] und Text gleich breit sind wie in der Anzeige */
    font-size: 1.1em;
    line-height: 1.4;
    padding: 10px;
    resize: vertical;
    /* Erlaubt dem User, manuell am Eck zu ziehen */
    overflow-y: hidden;
    /* Verhindert hässliche Scrollbalken beim Auto-Resize */
}

.btn {
    padding: 10px 15px;
    margin: 3px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-add {
    background: #28a745;
}

.btn-save {
    background: #007bff;
    width: 100%;
    font-size: 1.1em;
}