    /* Стили для модального окна */
.modal-menu-section-editor {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
    }

.modal-menu-section-item-editor {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
    }

.modal-menu-editor-content {
      background-color: white;
      padding: 20px;
      border-radius: 5px;
      width: 400px;
      max-width: 90%;
    }
.modal-menu-editor-content input,
.modal-menu-editor-content textarea {
      width: 100%;
      margin-bottom: 10px;
      padding: 8px;
    }
.modal-menu-editor-content button {
      margin-right: 10px;
      padding: 8px 16px;
    }

.items-list-menu-editor li {
      margin-bottom: 10px;
    }

.section-name {
    font-size: 22px;
}

.edit-section-item-btn,
.edit-section-btn {
    content: "✎";
    font-size: 1.2em;
}

.section-item-header {
    display: flex;
    justify-content: left;
}

.section-item-header-buttons {
    display: flex;
    justify-content: end;
    width: -webkit-fill-available;
}


/* Стили для вложенного списка */
.section-nested-list {
    list-style-type: none; /* Убираем маркеры списка */
    padding: 0;
    margin: 10px 0;
    background-color: transparent; /* Убираем фон */
}

.section-nested-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #333333; /* Фон как у .object-item */
    border-radius: 8px; /* Скругленные углы */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Тень как у .object-item */
    color: #cccccc; /* Цвет текста */
}

.section-nested-list li:last-child {
    margin-bottom: 0; /* Убираем отступ у последнего элемента */
}

/* Иконка внутри вложенного списка (если нужна) */
.section-nested-list .object-icon {
    width: 80px; /* Немного меньше, чем у основного списка */
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Текст внутри вложенного списка */
.section-nested-list .object-info {
    flex-grow: 1;
}

.section-nested-list .object-info h3 {
    margin: 0;
    font-size: 14px; /* Немного меньше, чем у основного списка */
    color: #ffffff;
}

.section-nested-list .object-info p {
    margin: 5px 0 0;
    font-size: 12px; /* Немного меньше, чем у основного списка */
    color: #cccccc;
}

.section-item-position,
.section-item-name {
    font-size: 16px;
}

.section-item-decription {
    font-size: 12px;
}
