/* Gesamter Bereich */
body {
    font-family: "Muli",sans-serif;
    font-weight: 500;
    text-align: left;
    margin: 50px;
    margin-top: 20px;
    background-color: rgb(255, 255, 255);    
}

/* Tabauswahl der einzenen Seiten */
input[type=radio] {
    display: none;
 }
 
 /* Kontainer für alle Tabs */
 .tabs-container{
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }
 
 /* Einzelne Tabs festlegen */
 .tab-label {
     border: 1px solid #000;
     width: 170px;
     height: 30px;
     padding: 10px 10px;
     font-size: 20px;
     cursor: pointer;
     margin: 8px;
     background: rgb(85, 85, 85);
     color: rgb(255, 255, 255);
     align-items: center;
     justify-content: center;
     display: flex;
     transition: background 0.3s ease; 
 }
 
 /* Farbe des ausgewählten Tabs auf weiß stellen */
 #tab1:checked ~ .tab1-label,
 #tab2:checked ~ .tab2-label,
 #tab3:checked ~ .tab3-label,
 #tab4:checked ~ .tab4-label,
 #tab5:checked ~ .tab5-label,
 #tab6:checked ~ .tab6-label,
 #tab7:checked ~ .tab7-label,
 #tab8:checked ~ .tab8-label {
     background: rgb(255, 255, 255);
     color: rgb(0, 0, 0);
 }
 
 /* Farbe des gehoverten Tabs auf weiß ändern */
 #tab1:hover ~ .tab1-label,
 #tab2:hover ~ .tab2-label,
 #tab3:hover ~ .tab3-label,
 #tab4:hover ~ .tab4-label,
 #tab5:hover ~ .tab5-label,
 #tab6:hover ~ .tab6-label,
 #tab7:hover ~ .tab7-label,
 #tab8:hover ~ .tab8-label {
     background: rgb(255, 255, 255);
     color: rgb(0, 0, 0);
 }

/* Titel der einzelnen Tabs */
#Titel {
    font-family: "Roboto Condensed";
    font-size: 30px;
    font-weight: 300;
    line-height: 1.25em;
}

/* Strich unter den Titeln */
.Strich{
    width: 60px;
    margin: 0px;
    margin-bottom: 40px;
}

/* Kontainer für Input Titelblatt */
.containerInputTitelblatt {
    margin-top: 30px;
}

#TextTitel {
    margin-right: 40px;
}

/* Inputfelder auf der Titelseite */
.InputTitelblatt {
    display: flex;
    padding: 4px;
    font-size: 16px;
    height: 32px;
    width: 630px;
    padding-left: 10px;
    margin-bottom: 15px;
    background-color: white;
    border: none;
    box-shadow: none;
}

/* Kontaier für Bild auf der Titelseite */
.TitelBild{
    flex: 0 1 50%;
    display: none;
}

/* Bild auf der Titelseite */
#titelbild {
    width: 100%;
    height: 810px;
}

.InputWrapper {
    position: relative;
    display: inline-block;
}
  
.InputRaum {
padding-right: 45px; /* Platz für die Einheit */
text-align: right;
font-size: 17px;
background-color: white;
border: none;
height: 43px;
width: 150px;
box-sizing: border-box;
}

.Unit {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 16px;
pointer-events: none;
}

/* Entfernt die Pfeile bei allen Inputfeldern*/
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Klasse für Beschriftung (Länge...) und das Inputfeld */
.TextInput {
    display: flex; 
    justify-content: space-between;
    margin-bottom: 18px;
    margin-right: 55px;
}

/* Berechnetes Volumen */
.Volumen {
    margin-right: 60px;
    text-align: right;
    margin-bottom: 25px;
    font-weight: normal;
    font-size: 16px;
}

/* Klasse für allgemeinen Text  */
.Text {
    font-family: "Muli",sans-serif;
    font-weight: 500;
    line-height: 1.7;
}

/* Auswahl für Raumkategorie */
select {
    padding: 4px;
    font-size: 17px;
    height: 43px;
    width: 722px;
    padding-left: 20px;
    background-color: white;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

#RaumKonfiguriert {
    margin-bottom: 40px;
}

/* Kontainer für die Seite Decke */
.container-decke-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

/* Kontainer für die Seite Boden */
.container-boden-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

/* Kontainer für die Seite Längswände und Querwände */
.container-wand-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

/* Kontainer für die Seite Personen/Möbel */
.container-personen-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

/* Kontainer für die einzelnen Seiten */
.content-container {
    width: 1715px;
    height: 810px;
    display: flex;
    margin-top: 20px;
    margin: 10px;
    background-color: rgb(236, 236, 236)
}

/* Linker Inhalt für die Seiten */
.tabs {
    flex: 0 1 50%;
    padding-top: 0px;
    padding-left: 60px;
    padding-right: 20px;
    box-sizing: border-box;
    display: none;
}

/* Ausgewählter Inhalt einblenden */
#tab1:checked ~ .content-container .tab1-content,
#tab2:checked ~ .content-container .tab2-content,
#tab3:checked ~ .content-container .tab3-content,
#tab4:checked ~ .content-container .tab4-content,
#tab5:checked ~ .content-container .tab5-content,
#tab6:checked ~ .content-container .tab6-content,
#tab7:checked ~ .content-container .tab7-content,
#tab8:checked ~ .content-container .tab8-content {
    display: block;
}

/* Kontainer für den Inhalt der rechten Seite */
.SäulenChart {
    flex: 0 1 50%;
    padding-top: 170px;
    padding-left: 60px;
    padding-right: 60px;
    display: none;
    box-sizing: border-box;
}

/* Kontainer für die Bilder über dem SäulenChart */
#bildContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-left: 16px;
    padding-bottom: 20px;
}

/* Bilder über dem Säulen Chart verändern */
#bildContainer img {
    width: 120px;
    height: auto;
}

.alpha-row {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.alpha-label {
    padding: 13px;
    font-size: 16px;
}

.alpha-input {
    padding: 4px;
    margin-left: 293px;
    font-size: 16px;
    height: 38px;
    width: 120px;
    text-align: right;
    padding-right: 20px;
    background-color: white;
    border: none;
    box-shadow: none;
}

/* Chart für die Absorption der einzenen Flächen in Säulen */
#säulenAbsorption {
    max-height: 200px;
    max-width: 700px;
}

#TextunterSäulenChart, #TextUnterNachweisChart  {
    padding-left: 20px;
}

/* Klasse für die rechte Seite Nachweis */
.NachweisChart {
    margin-top: 170px;
    flex: 0 1 50%;
    max-width: 700px;
    display: none;
}

/* Chart für die Seite Nachweis */
#ChartNachweis {
    max-height: 400px;
    max-width: 700px;
}

/* Rechte Seite ein-und ausblenden abhängig des gewählten Tabs */
#tab1:checked ~ .content-container .TitelBild,
#tab2:checked ~ .content-container .SäulenChart,
#tab3:checked ~ .content-container .SäulenChart,
#tab4:checked ~ .content-container .SäulenChart,
#tab5:checked ~ .content-container .SäulenChart,
#tab6:checked ~ .content-container .SäulenChart,
#tab7:checked ~ .content-container .SäulenChart,
#tab8:checked ~ .content-container .NachweisChart{
    display: block;
}

/* Klasse für Inputfeld, Button Materialauswahl und Plus/ Minusbutton */
.auswahl-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.buttonSumme {
    display: flex;
    justify-content: space-between;
    margin-right: 115px;
}

.PlusButton {
    width: 512px;
    height: 43px;
    padding: 4px;
    background-color: inherit;
    cursor: pointer;
    text-align: left;
    padding-left: 20px;
    font-size: 17px;
    border: none;
    box-shadow: none;
    margin-bottom: 12px;
}
/* Farbe des Buttons beim hovern verändern */
.PlusButton:hover {
    color: #CCAD77;
    background-color: inherit;
}

/* Input für Fläche und Anzahl Personen/Möbel */
.auswahl-input {
padding-right: 45px;
text-align: right;
font-size: 17px;
background-color: white;
border: none;
height: 43px;
width: 150px;
box-sizing: border-box;
}

/* Modal öffnen und Material wählen */
.buttonMaterial {
    width: 512px;
    height: 43px;
    padding: 4px;
    background-color: #ffffff;
    cursor: pointer;
    text-align: left;
    padding-left: 20px;
    font-size: 17px;
    border: none;
    box-shadow: none;
}
/* Farbe des Buttons beim hovern verändern */
.buttonMaterial:hover {
    background-color: #c5c5c5;
}

/* Butten Plus/ Minus Wrapper Auswahl */
.buttonAuswahl {
    margin-left: 4px;
    border: none;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
}
/* Farbe des Buttons beim hovern verändern */
.buttonAuswahl:hover {
    color: #CCAD77;
    background-color: transparent;
}

/* Modal festlegen */
.modal {
    display: flex;
    flex-direction: row;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 730px;
    background-color: rgb(236, 236, 236);
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 60px;
    border-color: #000;
    gap: 40px;
}

/* Klasse für den Inhalt der linken Seite im Modal */
.modal-links {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Überschrift im Modal */
#modalId, #modal-Titel {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.25em;
}

/* Materialliste im Modal */
#selectMaterial, #selectElement {
    width: 510px;
    height: 45px;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Klasse für den Inhalt des Modals auf der rechten Seite */
.modal-rechts {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Chart für die Absorptionswerte im Modal */
#myChartModal {
    width: 85% !important;
    height: 60% !important;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 70px;
}

/* Texfeld welches Material ausgewählt wurde */
#Material {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
}

/* Button zum schließen des Modals */
#close-modal {
    margin-top: 30px;
    align-self: flex-end;
    cursor: pointer;
    border: none;
    font-size: 32px;
}
/* Farbe des Buttons beim hovern verändern */
#close-modal:hover, #close-modalMaterialHinzufügen:hover {
    color: #CCAD77;
    background-color: inherit;
}

/* Kontainer für die linke Seite Nachweis */
#table-container {
    position: relative;
    width: 738px;
}

#buttonNachweis {
    display: flex;
}

/* Button zum Nachweis Berechnen */
#nachweisBerechnenSabine, #nachweisBerechnenZhou, #nachweisKatB {
    width: 240px;
    height: 45px;
    border: none;
    font-size: 16px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    margin-right: 30px;
}
/* Farbe des Buttons beim hovern verändern */
#nachweisBerechnenSabine:hover, #nachweisBerechnenZhou:hover, #nachweisKatB:hover {
    background-color: #c5c5c5;
}

#TabelleAV, #ChartWrapper {
    padding-left: 60px;
}

.AVtabelle {
    flex: 0 1 50%;
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
    box-sizing: border-box;
}    

.AVtabelle th, .AVtabelle td {
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    text-align: center;
}

.AVtabelle th {
    background-color: #e0e0e0;
    font-weight: bold;
}
#nachweisErgebnis {
    margin-top: 30px;
}
/* Kontainer für Audio und PDF */
.Audio {
    display: none;
    align-items: center;
    position: absolute;
    top: 500px;         /* Abstand zum unteren Rand */  
  }
  
.AudioContainer {
    display: flex;
    gap: 70px; /* Abstand zwischen Audio- und PDF-Bereich */
}

  
  /* Buttons */
  #audioBerechnenUnterricht,
  #audioBerechnenBüro,
  #audioBerechnenWetterfee {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background-color: #000;
    border: none;
    color: white;
    font-size: 19px;
    cursor: pointer;
  }
  
  /* Texte */
  #ÜberschriftAudio {
    color: #CCAD77;
    font-size: 16px;
    text-decoration: underline;
  }
