/* Grundlegendes Styling für die Seite */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #ccc;
}

/* Ihre Custom-Farbkodierung */
.status-neutral {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #eee;
    color: #555;
    font-weight: bold;
}

.status-green-yellow {
    /* 1. erfolgreicher Versuch */
    background-color: #ffd700; /* Goldgelb */
    color: #333;
    border: 2px solid #388e3c; /* Dunkelgrüner Rahmen */
}

.status-green {
    /* 2. erfolgreicher Versuch */
    background-color: #4CAF50; /* Klassisches Grün */
    color: white;
}