body:not([data-mode="presentation"]) {

    overflow: hidden;
}

#editor-app {

    width: 120ch;

    margin: 4rem 0 4rem 1rem;
    padding: 0 2rem;

    box-sizing: border-box;
}

h2 {

    width: 80%;
    margin: 0 0 1rem 0;
    font-size: 1.35rem;
    font-weight: 600;
}

.hint {

    margin: 1.28rem 0 0 4.5rem;
    white-space: nowrap;
    font-size: .72rem;
    color: purple;
}

#workspace {

    display: flex;
    align-items: flex-start;

    gap: 3rem;
}

#editor-pane {

    display: flex;
    flex-direction: column;

    flex: 1;
}

#markdown-input {

    width: 100%;
    height: 50vh;

    resize: none;

    border: 3px solid slateblue;
    box-sizing: border-box;
    border-radius: 8px;

    flex: 1;
}

#markdown-input::selection {
  background-color: #e0e0e0;
  color: #000000;
}

#continue-btn {

    border-radius: 8px;
    padding: .45rem 1rem;
}

.toolbar {

    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

#ads-pane {

    width: 300px;
    flex-shrink: 0;
}

#ads-slot {

    width: 100%;
    min-height: 600px;
}

.editor_heading {
    display: flex;
    align-items: center;
}

.editor_heading .hint {
    margin-left: 0.5em;
}

.browse_control {
    position: relative;
    right: -30%;
}

#browse-btn {
    border-radius: 8px;
    padding: .45rem 1rem;
}

#markdown-file {
    display: none;
}
