
.content code {
    color: black;
    background-color: ghostwhite;
    padding: 2px 5px 2px 5px;
    font-weight: normal;
}


.code-area {
    position: relative;
}

.code-editor, .log-container, .has-box-shadow {
    border-radius: 3px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.code-editor {
    padding: 10px;

    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monspace, serif;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.25;
    tab-size: 4;
    hyphens: none;
}

.code-editor.is-large {
    max-height: 750px;
}

.code-area .compile-and-run,
.code-area .stop-program {
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
}

.log-container {
    overflow: auto;
}

.log-container.is-large {
    max-height: 700px;
}

.log-container.is-medium {
    max-height: 300px;
}

.log-container.is-small {
    max-height: 75px;
}


.log {
    background-color: #eef3fc;
}

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

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    margin-right: 10px;
    animation: spin 2s linear infinite;
}