body {
    background-color: black;
    color: #d5d5d5;
    font-family: Consolas, monospace;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}

.container {
    display: flex;
    text-align: center;
    flex-wrap: wrap; /* Flexbox-Elemente umfließen in neuem Block (beim Umbrechen) */
}

#canvas {
    border: 1px solid #ccc;
    cursor: crosshair;
    background-color: white;
    margin-bottom: 10px;
}

h1, p{
    margin:0.2em;
}

.myButton {
    background-color:#ededed;
    border-radius:28px;
    border:1px solid #dcdcdc;
    display:inline-block;
    cursor:pointer;
    color:#777777;
    font-family: Arial, sans-serif;
    font-size:15px;
    padding:10px 15px;
    text-decoration:none;
    text-shadow:0 1px 0 #ffffff;
    margin-bottom: 16px;
}

.myButton:hover {
    background-color:#dfdfdf;
}

.myButton:disabled{
    color: #ededed;
}

#nodeDropdownContainer {
    flex: 1;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

#graphcontrols{
    display: flex;
    width: 500px;
    flex-direction: row;
    justify-content: space-around;
}

.button-image{
    width: 30px;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

#box1 {
    flex: 1;
    width: 500px; /* oder eine andere geeignete Breite */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.code{
    text-align: left; /* Text linksbündig ausrichten */
    white-space: pre-wrap; /* Umbruch beibehalten */
    margin: 0.5em;
    padding: 0; /* Setzt das padding des div-Elements auf 0 */
    font-size: 16px;
}

.status{
    text-align: left; /* Text linksbündig ausrichten */
    padding: 5px;
    width: 100%;
}

.code-block{
    transition: background-color 1s ease;
}

.highlighted {
    background-color: darkgreen;
}
/* Neuer Stil für das Hilfetext-Element */
#helpCheckbox {
    margin-left: auto; /* Um das Element nach rechts zu verschieben */
}
