body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: url("https://images.unsplash.com/photo-1620742820748-87c09249a72a?q=80&w=654&auto=format&fit=crop") no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(139, 46, 0, 0.55);
    z-index: -1;
}

.header {
    text-align: center;
    padding: 14px;
    font-size: 18px;
    background: rgba(139, 46, 0, 0.7);
    border-radius: 0 0 60px 60px;
    color: #ffe7c2;
    font-weight: bold;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 10px;
}

/* FILTER */
.filter {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.filter select,
.filter button {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: none;
}

/* TABLE */
.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: #fff;
    color: #2b2b2b;
    border-radius: 12px;
    overflow: hidden;
}

th {
    background: #8b2e00;
    color: #ffe082;
    padding: 10px;
    font-size: 12px;
}

td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

.top-nav {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.home-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    color: #ffe7c2;
    text-decoration: none;
    font-weight: bold;
}
/* FILTER BUTTON DEFAULT */
.filter button {
    background: #8b2e00;
    color: #ffe082;
    font-weight: bold;
    transition: all 0.2s ease;
}

/* WENN ÄNDERUNG NICHT BESTÄTIGT */
.filter button.changed {
    background: #ffe082;
    color: #8b2e00;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,224,130,0.7);
}