/* Grundtabelle */
#wohnflaeche table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    border: none;
}

/* 1. HEADER & LETZTE ZEILE: Hintergrund #1e3a8a, Schrift weiß, 12pt fett */
#wohnflaeche tr:first-child, 
#wohnflaeche tr:last-child {
    background-color: #1e3a8a !important;
}

#wohnflaeche tr:first-child td,
#wohnflaeche tr:first-child th,
#wohnflaeche tr:last-child td {
    color: #ffffff !important;
    font-size: 12pt !important;
    font-weight: bold !important;
    border: none !important;
}

/* 2. ETAGEZEILE (Eintrag in 1. Spalte): Hintergrund #dbeafe, Schrift #1e3a8a, 12pt fett */
#wohnflaeche tr:has(td:first-child:not(:empty)):not(:first-child):not(:last-child) {
    background-color: #dbeafe !important;
}

#wohnflaeche tr:has(td:first-child:not(:empty)):not(:first-child):not(:last-child) td {
    color: #1e3a8a !important;
    font-size: 12pt !important;
    font-weight: bold !important;
    border-bottom: 1px solid #cbd5e0;
    border-left: none !important;
    border-right: none !important;
}

/* 3. RAUMZEILE (Eintrag in 2. Spalte): Hintergrund #eff6ff, Schrift #1e3a8a, 10pt normal */
/* Wichtig: Schließt Zeilen mit +/- in Spalte 3 aus */
#wohnflaeche tr:has(td:nth-child(2):not(:empty)):not(:has(td:nth-child(3):is(+, -))) {
    background-color: #eff6ff !important;
}

#wohnflaeche tr:has(td:nth-child(2):not(:empty)):not(:has(td:nth-child(3):is(+, -))) td {
    color: #1e3a8a !important;
    font-size: 10pt !important;
    font-weight: normal ;
    border-bottom: 1px solid #e2e8f0;
    border-left: none !important;
    border-right: none !important;
}

/* 4. RAUMDETAILS (+/- in Spalte 3): Hintergrund weiß, Schrift hellgrau, 8pt */
#wohnflaeche tr:has(td:nth-child(3):is(+, -)) {
    background-color: #ffffff !important;
}

#wohnflaeche tr:has(td:nth-child(3):not(:empty)) td {
    color: #a0aec0 !important;
    font-size: 8pt !important;
    font-weight: normal !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
    border-left: none !important;
    border-right: none !important;
}

/* Letzte Spalte fett (Überschreibt die "normal"-Regeln der Zeilen) */
#wohnflaeche td:last-child {
    font-weight: bold !important;
    font-size: 13pt !important; /* Passt die Größe an die Raumzeile an */
}

/* Spalten 4 bis 9 rechtsbündig (Zahlenwerte) */
#wohnflaeche td:nth-child(n+4) {
    text-align: right;
    white-space: nowrap; /* Verhindert Zeilenumbruch bei Einheiten */
}

/* Allgemeine Zell-Einstellungen */
#wohnflaeche td {
    padding: 4px 8px;
    border-left: none !important;
    border-right: none !important;
}

/* Icons/Listen-Punkte entfernen */
#wohnflaeche td::before, #wohnflaeche td::after {
    display: none !important;
    content: none !important;
}
