body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100dvh;
    background: #F0F0F0;
    touch-action: none;
    overflow: hidden;
    position: fixed;
}

.hidden {
    display: none;
}

#container {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

#markdown-editor {
    z-index: 100;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.CodeMirror, .CodeMirror-scroll {
    min-height: 30dvh;
    max-height: 30dvh;
}

#pdf-viewer {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

#knob {
    display: flex;
    justify-content: center;
    padding: 6px 0;
}

#knob:hover {
    background-color: #E0E0E0;
}

#knob-icon {
    width: 50px;
    height: 4px;
    background-color: #A0A0A0;
    border-radius: 15px;   
}

#smde-select {
    font-size: 1em;
    padding: 2px;
    margin: 0 0 0 4px;
}

#bottom-sheet {
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255);
    box-sizing: border-box;
    padding: 0 8px 8px 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.editor-toolbar {
    white-space: nowrap;
    overflow-x: auto;
}
