body {
    margin: 0;
    font-family: system-ui;
    background: #111;
    color: #0f0;
}

header {
    padding: 20px;
    background: #1a1a1a;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

thead {
    background: #161616;
}

th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    color: #00ff88;
}

td {
    padding: 10px;
    border-bottom: 1px solid #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

tr:hover {
    background: #1e1e1e;
}

/* Spaltenbreiten sauber definieren */
th:nth-child(1),
td:nth-child(1) {
    width: 50%;
}

th:nth-child(2),
td:nth-child(2) {
    width: 15%;
}

th:nth-child(3),
td:nth-child(3) {
    width: 15%;
}

th:nth-child(4),
td:nth-child(4) {
    width: 20%;
}

a {
    color: #00ff88;
    text-decoration: none;
}

button {
    background: #00aa55;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
