p,
h1,
h2,
h3,
h4,
details,
summary {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

h1 {
    font-size: x-large;
}

textarea {
    display: block;
}

#code {
    width: 600px;
    height: 400px;
    border: 1px solid black;
}

.test::before {
    content: "▶ ";
    color: green;

}

.test {
    white-space: nowrap;
}

.pass {
    background-color: #e6f8d2;
}

.fail {
    background-color: #fac7b3ff;
}

#workspace {
    flex: 0 0 30%;
    min-width: 600px;
}

#workspace textarea {
    width: 100%;
}

#workspace #code {
    width: 100%;
}

#tutorial {
    flex: 1;
    overflow-y: auto;
    padding-left: 1em;

}

#wrapper {
    display: flex;
    height: 100vh;
}

summary h3 {
    display: inline;
}

summary {
    cursor: pointer;
}

.lineHighlighter {
    background-color: lightpink;
    position: absolute;
}

#cookieWarning {

    background-color: blue;
    color: white;
    height: 25px;
    padding: 8px;
}

#cookieWarning p {
    padding: 0;
    margin: 0;
    text-align: center;
}

#cookieWarning a {
    color: white;
}

body {
    margin: 0;
    background-color: floralwhite;

}

main {
    padding: 8px;
    max-width: 1400px;
}

main h2 {
    margin-bottom: 0;
}

main details[open] {
    background-color: white;
}

main details {
    margin-top: 16px;
}