body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #444;
    color: #eee;
}

.container {
    display: flex;
    flex-direction: row;
}

.container > * {
    margin: 0.5em;
    border: 1px solid #ccc;
}

.snippetwrapper {
    width: 400px;
    height: 740px;
    overflow: auto;
}

.toolbox {
    flex: 1 1 auto;
    height: 740px;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
}


.flexColumn {
    display: flex;
    flex-direction: column;
}

.eventlog {
    max-height: 100vh;
    overflow: auto;
    font-size: 0.8em;
}

.eventlog > pre {
    max-height: 100px;
    overflow: auto;
    margin: 0;
    background-color: #fefefe;    
    color: #333;
}

.eventlog > pre:nth-child(even) {
    background-color: #ccc;    
}
