body {
    background: #f3f6f9;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.finanzen-uebersicht {
    max-width: 950px;
    margin: 32px auto;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
    color: #3c8058;
}

.finanzen-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}

.finanzen-info > div {
    background: #e7fbe5;
    border-radius: 10px;
    padding: 18px 24px;
    box-shadow: 0 2px 8px rgba(30,120,84,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 170px;
}

.finanzen-info span {
    color: #247c49;
    font-size: 1.02em;
}

.finanzen-info strong {
    font-size: 1.15em;
    color: #144c29;
    margin-top: 3px;
}

.finanzen-aktionen {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 22px;
}

.action-btn {
    background: #247c49;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}
.action-btn:hover {
    background: #144c29;
}

.finanzen-table {
    width: 100%;
    border-collapse: collapse;
    background: #f7faf7;
}

.finanzen-table th, .finanzen-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.finanzen-table th {
    background: #e2f4e7;
    color: #247c49;
    font-weight: 600;
}

.betrag-einnahme {
    color: #27b856;
    font-weight: 600;
}
.betrag-ausgabe {
    color: #ce2534;
    font-weight: 600;
}

.table-btn {
    background: #247c49;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    margin-right: 4px;
    text-decoration: none;
    font-size: 0.97em;
    transition: background 0.18s;
}
.table-btn:hover {
    background: #144c29;
}
.loeschen-btn {
    background: #c43b3b;
}
.loeschen-btn:hover {
    background: #801919;
    color: #fff;
}
