.astroid-header-section {
    background-color : #146c20;
}

bg-primary {
background-color: #146c20 !important;
}

   /* Der Container für die gesamte Tabelle */
    .table-container {
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        width: 100%;
        max-width: 800px;
        margin: 20px auto;
    }

    /* Eine Zeile */
    .table-row {
        display: flex;
        border-bottom: 1px solid #eee;
    }

    /* Kopfzeile speziell stylen */
    .table-row.header {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    /* Die einzelnen Zellen/Spalten */
    .table-cell {
        flex: 1; /* Alle Spalten gleich breit */
        padding: 10px;
        text-align: left;
    }

    /* Letzte Zelle in der Zeile ohne rechten Rand */
    .table-cell:last-child {
        border-right: none;
    }

    /* Responsive Anpassung für kleine Bildschirme */
    @media (max-width: 600px) {
        .table-row {
            flex-direction: column;
        }
        .table-cell {
            border-bottom: 1px solid #eee;
        }
    }

 