.wrapper-editing-tools {
    height: 36px;
    width: fit-content;
    display: grid;
    grid-template: 1fr / auto 2px auto 2px auto;
    justify-content: start;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 0px 2px;
    outline: 1px solid  #0000001a;
    border-radius: 4px;

    position: fixed;
    top: 74px;
    z-index: 100;
    box-shadow: 0px 2px 2px 0px #b1b1b1;
}

.wrapper-formating-group {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: max-content;
    align-items: center;
}

.edit-tool {
    width: 10mm;
    height: 10mm;
    background-color: blue;
}

.hide-tools {
    display: none;
}

.wrapper-color {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.editor-variable {
  color: orange;
  border-bottom: 1px dashed orange;
}

.var-ac-popup {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 220px;
  overflow: hidden;
}
.var-ac-item {
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.var-ac-item--active { background: #fff3e0; }
.var-ac-item:hover   { background: #fff3e0; }
.var-ac-name { color: orange; font-weight: 600; font-size: 13px; }
.var-ac-hint { color: #888; font-size: 11px; }
.var-ac-empty { padding: 8px 10px; color: #aaa; font-size: 13px; }
