body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f5f5f5;
    text-align: left;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto; 
    padding: 0 2%;
}

html {
    font-size: 14px; 
}

/* Mittlere Bildschirme */
@media (min-width: 1200px) {
    html {
        font-size: 16px; 
    }
}

/* Große Bildschirme (Monitor) */
@media (min-width: 1800px) {
    html {
        font-size: 18px; 
    }
}


.title {
    font-size: 2rem; 
    font-weight: bold;
    margin-bottom: 7%;  
    text-align: left;
}

.subtitle {
    font-size: 1.8rem;
}

.content-wrapper {
    display: flex;
    gap: 0px;
    align-items: stretch;
    justify-content: flex-start; 
}

.form-wrapper {
    flex: 0 0 20%;
    min-width: 300px;

    max-height: 140vh;   
    overflow-y: auto;   
    padding-right: 1%;
}

.form-section {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

select,
input[type="number"] {
    width: 100%;
    padding: 0.3em;
    font-size: 1.2rem;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

#unteres-blech {
    margin-bottom: 40px;
}

#anzahl-der-bleche {
    margin-bottom: 10px;
}

.vorschau-wrapper {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: 2%;
  }
  

#vorschau-svg {
    width: 100%;
    height: auto;
    max-width: none;
    margin-bottom: 20px;
}

#geometrie-bild {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
    position: relative;
    top: -15%;
}


.button-container {
    text-align: center;
    margin-top: 3rem;
}
  
 .berechnen-button {
    background-color: #6cbb64;
    color: white;
    padding: 30px 100px;
    font-size: 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease;
 }
  
.berechnen-button:hover {
    background-color:  #5aa14f;
}

#ergebnis-container {
    background-color: #fff;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none; 
    max-width: 91%;
}

#ergebnis-container h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
}


  
  


