﻿

.editor-panel {
    border: 1px solid black;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 'search form';
    overflow: auto;
    aspect-ratio: unset;
}

.tab-content {
    height: 100%;
}

.search-part {
    width: max-content;
    height: 100%;
    grid-area: search;
    overflow: auto;
}


.editor-page {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.search-item {
    border: 1px solid black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.editor-form {
    width: 100%;
    height: 100%;
    grid-area: form;
    border: 1px solid black;
    display: grid;
    grid-template-rows: 1fr max-content;
    padding: 10px;
    overflow: auto;
}

.editors {
    border: 1px solid black;
    padding: 25px;
}

.options {
    border: 1px solid black;
    display: grid;
    grid-template-columns: 1fr max-content;
    padding: 10px;
    column-gap: 10px;
}

.edit-options {
    display: flex;
    column-gap: 10px;
}