/* Finanzplanung 2025 - Styles */

.table-container {
    overflow-x: auto;
}

.negative {
    color: #dc3545;
}

.positive {
    color: #198754;
}

.section-header {
    background-color: #e9ecef;
    font-weight: bold;
}

.total-row {
    background-color: #f8f9fa;
    font-weight: bold;
    border-top: 2px solid #dee2e6;
}

.empty-row {
    height: 10px;
    background-color: #ffffff;
}

/* Zusätzliche Styles für Header und Footer */
.main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin-right: 1rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
    .main-header h1 {
        font-size: 1.8rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
}

