:root {
    --breeze-light-primary: #3daee9;
    --breeze-light-secondary: #eff0f1;
    --breeze-light-accent: #232629;
    --breeze-light-hover: #3daee9;
    --breeze-light-active: #3daee9;
    --breeze-light-link: #3daee9;
    --breeze-light-disabled: #eff0f1;
    --breeze-light-background: #eff0f1;
    --breeze-light-text: #232629;
    --breeze-light-text-disabled: #eff0f1;
    --breeze-light-divider: #eff0f1;
}

*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--breeze-light-background);
}
.container{
    display: flex;
    padding: 5px;
}
.divlinks{
    padding: 20px;
    flex: 4;
    border-right: var(--breeze-light-accent) 1px solid;
    box-sizing: border-box;
    height: 90vh;
    gap: 20px;
}
.divrechts{
    flex: 6;
    /* border: var(--breeze-light-accent) 1px solid; */
    padding: 20px;
    box-sizing: border-box;
    height: 90vh;
    gap: 20px;
}
.headline{
    font-size: 24px;
    color: var(--breeze-light-primary);
    margin-bottom: 10px;
}
#addButton{
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    background-color: var(--breeze-light-active);
    color: var(--breeze-light-secondary);
    border: none;
    width: 100%;
    font-size: 25px;
}
input[type=text]{
    border: var(--breeze-light-accent) 1px solid;
    box-sizing: border-box;
    padding: 5px 10px;
}
#output{
    min-width: 100%;
    min-height: 350px;
    padding: 5px;
    font-size: 11pt;
    border: var(--breeze-light-accent) 1px solid;
    color: var(--breeze-light-text);
    box-sizing: border-box;
}
#priceInputs {
    display: flex;
    flex-direction: column;
}

.inputs {
    display: flex;
    justify-content: start;
    margin-bottom: 10px;
}

.inputs input, .deleteButton {
    flex: 1 1 1;
    margin-right: 10px;
    box-sizing: border-box; /* Stellt sicher, dass die Breite des Eingabeelements auch den Rand und die Polsterung umfasst */
    height: 30px; /* Feste Höhe für alle Eingabeelemente */
}

.inputs input:last-child, .deleteButton:last-child {
    margin-right: 0;
}

.deleteButton {
    margin-left: 10px;
}

/* Stellen Sie sicher, dass alle Eingabeelemente die gleiche Größe haben */
.inputs input, .deleteButton {
    width: calc((100% - 40px) / 4); /* 40px ist der Gesamtabstand zwischen den Elementen */
}

.staffelung{
    color: var(--breeze-light-primary);
    font-weight: bold;
    display: flex;
    justify-content: center;
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
}
button{
    padding: 5px 20px;
    background-color: var(--breeze-light-link);
    color: var(--breeze-light-secondary);
    border: none;
    width: 200px;
}
input[type=checkbox]{
    margin-right: 10px;
}
.menu_list{
    display: flex;
}
.checkboxes_1 {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 5px;

}
.checkboxes_2{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
.c2_ele{
    margin-right: 20px;
}
.buttons_steuerung {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
}

.inputs_lz {
    margin: 10px 0px;
}
.text_label {
    color: var(--breeze-light-primary);
    font-weight: bold;
    align-items: center;
}
.inputs_material{
    margin: 10px 0px;    
}
.inputs_zusatzkosten{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}
.iz_1, .iz_2, .iz_3{
    display: flex;
    flex-direction: column;
    color: var(--breeze-light-primary);
    font-weight: bold;
    margin: 5px 0px;
}
.input_pkn, .input_paek, .input_rk{
    width: 300px;
}
.line_design{
    height: 1px;
    color: var(--breeze-light-accent);
    background-color: var(--breeze-light-accent);
    border: none;
    border-color: var(--breeze-light-accent);
    box-sizing: border-box;
    margin: 10px 0px;   
}