.editor-toolbar-1 {
    margin: 4px 0 0 6px;
    /* border-bottom: 1px solid gray; */
    display: flex;
    flex-direction: row;
}

.editor-toolbar-link-1 {
    display: flex;
    flex-direction: row;
    /* align-content: center;
    justify-content: center; */
    /* width: fit-content; */
    margin: 10px 0 10px 10px;
    padding: 4px 6px;
    /* border-bottom:solid 1px silver; */
    user-select: none;
}

.editor-toolbar-link-1:hover {
    color: azure;
    /* text-decoration: underline;
    text-underline-offset: 5px; */
    font-weight: 600;
    border: solid 1px aqua;
    margin: 8px 0 9px 10px;

}

.editor-toolbar-canvas-1 {
    height: 12px;
    margin: 2px 0 0 0;
}

.editor-toolbar-canvas-2 {
    height: 18px;
    margin: 2px 0 0 0;
}

.editor-button-link-text-1 {
    margin: 0 0 0 6px;
    font-size: 0.8rem;
}

/* .editor-button-link-1:hover {
    color: aqua;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 600;

} */

.editor-column-1 {
    width: 120px;
}


.editor-row {
    margin-top: 5px;
    margin-bottom: 16px;
}

.editor-row>input {
    margin-left: 15px;
    width: 80px;
}


.grid-3-cols{
    display:grid;
    grid-template-columns: 271px 60px 90px; 
    row-gap: 21px; 
    column-gap: 11px;
    padding: 10px; /* Padding around the grid */
    border-bottom: 1px solid #ccc; /* Top border for the first row */
}

.grid-2-cols{
    display:grid;
    grid-template-columns: 150px 160px; 
    row-gap: 21px; 
    column-gap: 11px;
    padding: 10px; /* Padding around the grid */    
}