.editor-wrapper {
    width: 100%;
    max-width: 600px;
    padding-right:2rem;
}

.editor-container {
    position: relative;
    display: flex;
    align-items: center;
}

.editor-textarea {
    flex-grow: 1;
    height: 2em;
    padding: 8px 36px 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    /*transition: height 0.2s ease;*/
    resize: none;
}

.editor-textarea:focus {
    height: 6em;
    outline: none;
    border-color: #66afe9;
}

.edit-indicator,
.revert-button {
    position: absolute;
    right: -2rem;
    width: 1.5rem;
    height: 1.5rem;
    line-height:1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.edit-indicator {
    color: #22a322;
}
.revert-button {
    color: #d33030;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.revert-button:hover {
    color: #d31e1e;
}

/*.edit-indicator {
    pointer-events: none;
}*/
