/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 100vh;
    overflow: auto; /* Scrollbar hinzufügen, wenn der Inhalt zu groß ist */
}

h1 {
    color: #333;
}

#plotSelector {
    margin-top: 20px;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#plotContainer {
    margin-top: 20px;
    width: 90%;
    height: 70%;
    max-width: 1600px;
    max-height: 1200px;
    min-height: 50vh;
}
#Text {
    margin-top: 20px;
    width: 90%;
    max-width: 1600px;

}

iframe {
    width: 100%;
    height: 100%;

    border: 1px solid #ddd;
    border-radius: 5px;
}
