body {
    background: #f3f6f9;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.dokumente-uebersicht {
    max-width: 950px;
    margin: 32px auto;
    padding: 28px 30px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
}

h1 {
    text-align: center;
    color: #8a6232;
    font-size: 2.2em;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.dokumente-filter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
    gap: 18px;
}

.dokumente-filter form {
    display: flex;
    gap: 9px;
    align-items: flex-end;
}

.dokumente-filter input[type="text"],
.dokumente-filter select {
    padding: 7px 11px;
    border: 1px solid #c3c3b0;
    border-radius: 7px;
    font-size: 1em;
    background: #fcfcfa;
    min-width: 130px;
}

.dokumente-filter .filter-btn {
    background: #dfd3bc;
    color: #805015;
    border: none;
    padding: 8px 17px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1em;
    transition: background 0.17s;
}
.dokumente-filter .filter-btn:hover {
    background: #c7b795;
}

.action-btn {
    background: #25b06a;
    color: #fff;
    padding: 10px 23px;
    border-radius: 9px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s;
    font-size: 1.06em;
    border: none;
    box-shadow: 0 2px 7px rgba(37,176,106,0.13);
    display: inline-block;
}
.action-btn:hover {
    background: #168144;
}

.dokumente-table {
    width: 100%;
    border-collapse: collapse;
    background: #fcfaf5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(210, 180, 140, 0.08);
}

.dokumente-table th,
.dokumente-table td {
    padding: 13px 13px;
    text-align: left;
    font-size: 1em;
}

.dokumente-table th {
    background: #ecd6ad;
    color: #855e2e;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e4cda4;
}

.dokumente-table tr {
    border-bottom: 1px solid #f1e5ce;
}

.dokumente-table td {
    background: #fff;
}

.dokumente-table tr:last-child td {
    border-bottom: none;
}

.table-btn, .loeschen-btn {
    padding: 8px 18px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 0.98em;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.18s, color 0.18s;
    margin-right: 4px;
    margin-bottom: 2px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(37,176,106,0.09);
}

.table-btn {
    background: #25b06a;
    color: #fff;
}
.table-btn:hover {
    background: #168144;
}

.loeschen-btn {
    background: #cb3d31;
    color: #fff;
}
.loeschen-btn:hover {
    background: #861b11;
}

@media (max-width: 750px) {
    .dokumente-uebersicht {
        padding: 10px 3vw;
    }
    .dokumente-table th, .dokumente-table td {
        font-size: 0.94em;
        padding: 7px 5px;
    }
    .dokumente-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
    }
}
