.redaktions-card {
    display: grid;
    grid-template-columns: auto 1fr; /* linke Spalte für Button, rechte für Inhalt */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

.informations-card {
    display: grid;
    grid-template-columns: auto 1fr; /* linke Spalte für Button, rechte für Inhalt */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

.deleteable-card {
    display: grid;
    grid-template-columns: auto 1fr; /* linke Spalte für Button, rechte für Inhalt */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

.side-button {
    background: #ff5722; /* Rote Hintergrundfarbe */
    color: black;
    border: none;
    padding: 0.2rem;
    cursor: pointer;
    font-size: 1rem;
}

.card-content {
    padding: 0.2rem;
    background: #fff;


}
