body,
html {
    height: 100vh;
    background-color: #f9fafb;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    scrollbar-width: none;
    --ms-overflow-style: none;
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}


/* Scoped to the editor */
.ProseMirror li {
    margin-left: 1em;
}

/* Scoped to the editor */
.ProseMirror ul,
.ProseMirror ol {
    padding-left: 1.5rem;
}

/* Scoped to the editor */
.ProseMirror blockquote {
    margin-left: 1em;
    padding-left: 1em;
    border-left: 3px solid #eee;
}

/* Scoped to the editor */
.ProseMirror pre {
    background: #eee;
    padding: 0.5em;
    border-radius: 3px;
    margin: 0.3rem 0;
}

/* Scoped to the editor */
.ProseMirror hr {
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 1em 0;
}

/* Scoped to the editor */
.ProseMirror h1,
.ProseMirror h2,
.ProseMirror h3,
.ProseMirror h4,
.ProseMirror h5 {
    margin: 1em 0 0.5em;
    font-weight: normal;
}

/* Scoped to the editor */
.ProseMirror h1 {
    font-size: 1.8em;
}

/* Scoped to the editor */
.ProseMirror h2 {
    font-size: 1.5em;
}

/* Scoped to the editor */
.ProseMirror h3 {
    font-size: 1.2em;
}

/* Scoped to the editor */
.ProseMirror {
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding: 8px;
    /* border: 1px solid #e5e7eb; */
    /* border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px; */
    margin: auto;
    min-height: 200px;
    background-color: white;
}

.items {
    padding: 0.2rem;
    position: relative;
    border-radius: 0.5rem;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    font-size: 0.9rem;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0px 10px 20px rgba(0, 0, 0, 0.1);
}

.item {
    display: block;
    margin: 0;
    width: 100%;
    text-align: left;
    background: transparent;
    border-radius: 0.4rem;
    border: 1px solid transparent;
    padding: 0.2rem 0.4rem;
}

.item.is-selected {
    border-color: #000;
}

.valid-variable {
    box-shadow: 0 0 0 2px #cef0c2;
    border-radius: 1px;
    padding-inline: 3px;
    background-color: #cef0c2;
}

.invalid-variable {
    box-shadow: 0 0 0 2px #e29595;
    border-radius: 1px;
    padding-inline: 3px;
    background-color: #e29595;
}
