body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    padding: 10px;
    background: #eee;
}


#root {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100vh;
}

#inputHolder {
    position: absolute;
    /* position: fixed; */
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #eee;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;   
    flex: 0; 
}

#results {
    position: relative;
    z-index: 0;    
    flex: 1;
    overflow: auto;
    max-height: calc(100vh - 100px - 50px);    
}

#submitBtn {
    font-weight: bold;
    font-size: 16px;
}


#inputField {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.message {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background: #eee;
}

.message.user {
    background: #2cc3ff;

}

.code-wrap {
	white-space: pre-wrap;
	word-break: break-all;
}
