#editor-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.editor-content {
    background: #fff;
    padding: 20px;
    position: relative;
    width: 650px;
    text-align: center;
}

#close-editor {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

.editor-controls {
    margin-top: 15px;
}