.editor-area {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -1px -1px 5px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.3rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.editor-toolbar {
    display: flex;
    justify-content: space-between;
}

.editor-toolbar>.tools {
    display: flex;
}

.editor-toolbar>.send-btn {
    cursor: pointer;
    opacity: 1;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid rgb(221, 221, 221);
    background-color: rgb(221, 221, 221);
    display: flex;
    justify-content: center;
    align-items: center;
}

.editor-toolbar>.send-btn:hover {
    opacity: 0.8;
}
.editor-toolbar>.send-btn:active {
    opacity: 1;
}


.editor-toolbar>.send-btn[disabled] {
    opacity: 0.2;
    pointer-events: none;
}

.editor-toolbar>.send-btn>.arrow {
    display: block;
}

.editor-toolbar>.processing-btn {
    background-color: rgba(0, 0, 0, 0.8);
}

.editor-toolbar>.processing-btn>.arrow {
    display: none;
}

.editor-toolbar>.processing-btn>.square {
    width: 35%;
    height: 35%;
    background-color: #ffffff;
    border-radius: 3px;
}