@font-face {
    font-family: 'Vella Sans';
    src: url(https://evermorefonts.pages.dev/library/VellaFamily/fonts/VellaSans.ttf);
}

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

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

#editor-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Vella Sans', 'Twemoji Rubisco', system-ui, Arial, Helvetica, sans-serif;
    width: 100vw;
}

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

button {
    font-family: 'Vella Sans', 'Twemoji Rubisco', system-ui, Arial, Helvetica, sans-serif;
    margin-right: 8px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    background-color: #43454b;
    color: #dfe1e5;
    border: none;
    border-radius: 4px;
}

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

select {
    font-family: 'Vella Sans', 'Twemoji Rubisco', system-ui, Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: #43454b;
    color: #dfe1e5;
    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;
}