/* Basis-Stile für die Aufklappbereiche */
.details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Abstand zwischen den Blöcken */
}

details {
    width: calc(50% - 10px); /* Zwei Details nebeneinander mit Abstand */
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px; /* Abstand nach unten */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

details[open] {
    border-color: #bbb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

summary {
    cursor: pointer;
    background-color: #F6FFE0;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    outline: none;
    list-style: none; /* Verhindert das automatische Symbol */
    height: 60px; /* Feste Höhe für die Box */}

/* Entfernen der Standard-Pfeile von summary */
summary::-webkit-details-marker {
    display: none; /* Entfernt das Pfeil-Symbol in Webkit-Browsern */
}

summary::marker {
    display: none; /* Entfernt das Symbol in modernen Browsern wie Firefox */
}

summary::before {
    display: none !important; /* Sicherstellt, dass alle Symbole entfernt werden */
}

/* Sicherstellen, dass keine Standardliste oder Symbole verwendet werden */
summary {
    list-style-type: none;
    display: block;
}
