#editorThemesList {
    max-height: 60vh;
    /* Set this to your desired max height */
    overflow-y: auto;
}

@media screen and (max-height: 375px) {
    body {
        position: relative;
        overflow: auto;
    }
}

.card {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
    .card {
        width: 100%;
    }
}

#editorWrapper {
    position: relative;
    height: 100%;
    min-height: 45vh;
}

@media (min-height: 600px) {
    #editorWrapper {
        height: 55vh;
    }
}

@media (min-height: 900px) {
    #editorWrapper {
        height: 65vh;
    }
}

#editorWrapper #editor {
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ace-btn {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Russo One", sans-serif;
    font-size: 1.2em;
    font-weight: 200;
    letter-spacing: 0.15em;
    line-height: 2.5;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 1em;
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    background-color: #212529;
}

.ace-btn:hover {
    background-color: #ffc107;
    color: rgba(0, 0, 0, 0.9);

}