.tools-parent-container {


  .editor-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 40ch;
  }

  .editor-header {
    background: #444;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
  }

  .editor {
    height: 400px;
    border: 1px solid #aaa;
  }

  .center-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    align-items: center;
    font-size: var(--fs-12-16);
  }

  .center-panel button {
    background: #DE9406;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    width: max-content;
  }

  .center-panel button:hover {
    background: #aa7512;
  }

  .message {
    color: green;
    font-weight: bold;
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .custom-select {
    padding: 8px 12px;
    padding-right: 2.5em;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
    border: 2px solid #aa7512;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #aa7512 50%),
      linear-gradient(135deg, #aa7512 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 14px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
  }

  .custom-select:hover {
    background-color: #e6fff8;
  }

  .custom-select:focus {
    border-color: #aa7512;
    background-color: #e6fff8;
  }

  .editor-header {
    background: #444;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    margin-left: 10px;
    display: flex;
    align-items: center;
  }

  .delete-btn svg {
    fill: white;
    transition: 0.3s;
  }

  .delete-btn:hover svg {
    fill: #ff4d4d;
  }

  .delete-btn svg {
    fill: white;
    transition: 0.3s;
  }
}