/* Grundlegendes Layout für die Formularreihe */
.form-table {
    display: block;
    margin-top: 20px;
}

/* Jede Zeile im Formular wird als flexibles Container-Element behandelt */
.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Element im Container nach links ausrichten */
    gap: 20px; /* Abstand zwischen den Feldern */
    align-items: center;
}

/* Label wird als Blockelement angezeigt, damit es über der Eingabe steht */
.form-row label {
    width: 150px;
    font-weight: bold;
}

/* Attribut-Container (flexible Anordnung der Eingabefelder) */
.attribute-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den einzelnen Attributen */
    justify-content: flex-start;
}

/* Jedes Attribut wird in einem Container nebeneinander angezeigt */
.attribute-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px; /* Breite für jedes Attribut */
}

/* Die Eingabefelder erhalten eine feste Breite */
.attribute-item input[type="text"] {
    width: 100%;
    margin-top: 5px;
}

/* Checkboxen erhalten eine Standardbreite */
.attribute-item input[type="checkbox"] {
    margin-right: 10px;
}

/* Optional: Stil für die Schaltfläche */
button.button-primary {
    margin-top: 20px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px; /* Abstand zwischen den Buttons */
}

.button-container .button {
    padding: 10px 20px;
    font-size: 16px;
}

.button-container .button-secondary {
    background-color: yellow;
    color: black;
    border: 1px solid #ccc;
}

/* Title Button Container */
.title-button-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Headings and Lists */
.wrap h2 {
    margin-top: 20px;
    color: #0073aa;
    font-size: 25px;
}

.wrap ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 20px;
    line-height: normal;
}
