html, body {
    font-family: 'Aurora Sans', 'Sevolt Emoji Flat', system-ui, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.andorra-inputbox>.ibwrapper>.input {
    font-family: 'Aurora Sans', 'Sevolt Emoji Flat', system-ui, Arial, Helvetica, sans-serif !important;
}

#logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 1;
}

#editor-container {
    flex: 1;
    display: flex;
    height: 100%;
    flex-direction: row;
}

#editor {
    width: 50%;
    overflow: none;
}

.gutter {
    background-color: #000000;
    cursor: w-resize;
    width: 8px;
    transition: 0.6s background-color;
}
.gutter:hover {
    background-color: #3474f0;
    cursor: w-resize;
    width: 8px;
}

#preview {
    flex: 1;
    overflow: auto;
    background-color: #ffffff;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    padding: 8px;
    background-color: #000000;
}

button {
    font-family: 'Aurora Sans', 'Sevolt Emoji Flat', system-ui, Arial, Helvetica, sans-serif;
    margin-right: 8px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    background-color: #212121;
    color: #ffffff;
    border: none;
    border-radius: 4px;
}

button:hover {
    color: #ffffff;
    background-color: #3474f0;
}

select {
    font-family: 'Aurora Sans', 'Sevolt Emoji Flat', system-ui, Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #ffffff;
    background-color: #212121;
    border: none;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: 4px;
}

#logo {
    margin-left: 10px;
    padding-top: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 30px;
    z-index: 1;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 12px;
    }

    #editor-container {
        flex-direction: column;
    }

    #editor {
    width: 100% !important;
        height: 50%; 
    }

    #preview {
        width: 100%;
        height: 50%;
        border: none;
    }
}