@import url(https://aurorasoft.pages.dev/fonts/library.css);

:root {
    --font-family-base: "Sevolt UI", "Sevolt Emoji Color", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-family-mono: "Consolium", "Sevolt Emoji Color",  monospace;
}

html, body {
    font-family: var(--font-family-base);
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

button {
    font-family: var(--font-family-base);
    font-weight: 350;
    margin-right: 8px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    background-color: #212121;
    color: #ffffff;
    border: none;
    border-radius: 4px;
}

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

select {
    font-family: var(--font-family-base);
    font-size: 14px;
    background-color: #212121;
    color: #ffffff;
    border: none;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: 4px;
}

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

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

.context-view.fixed, .andorra-inputbox>.ibwrapper>.input, .andorra-editor {
    font-family: var(--font-family-base);
}