.tw-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2923;    /* dunkler Grund */
    color: #d9c689;               /* helles Gold */
    font-family: sans-serif;
    margin-bottom: 1.5rem;
}
.tw-table th,
.tw-table td {
    border: 1px solid #3c392f;    /* Rahmen zwischen Zellen */
    padding: 0.5rem 0.75rem;
}
.tw-table thead th {
    background-color: #3c392f;    /* etwas hellerer Header */
    font-weight: normal;
    text-align: left;
}
.tw-table tbody tr:nth-child(odd) {
    background-color: #2f2d27;    /* Alternierendes Shading */
}
.tw-table tbody tr:hover {
    background-color: #3c392f;
}
.tw-subject {
    font-weight: bold;
}
.tw-category {
    font-size: 0.85em;
    color: #b8a76b;
    margin-top: 0.25em;
}
.tw-date {
    text-align: center;
    white-space: nowrap;
}
.tw-status {
    text-align: center;
    font-size: 1.25em;
}
.tw-action a {
    color: #d9c689;
    text-decoration: none;
}
.tw-action a:hover {
    text-decoration: underline;
}

.tw-status span {
    display: inline-block;
    font-size: 1.25em;
    line-height: 1;
}

/* Farbgebung pro Status */
.status-unread        { background-color: #c39347; } /* gelb/orange */
.status-read          { background-color: #4b8ebb; } /* blau */
.status-in_progress   { background-color: #6c407e; } /* lila */
.status-completed     { background-color: #2ecc71; } /* grün */
.status-rejected      { background-color: #e74c3c; } /* rot */
.status-default       { background-color: #7f8c8d; } /* grau */
