.tools-parent-container {
  header {
    padding: 15px 20px;
    background: #ffffff;
    color: #222;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: bold;
  }

  .flex-container {
    display: flex;
    height: calc(100vh - 70px);
  }


  .editor-section {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
  }

  #inputEditor,
  #outputEditor {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .middle-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }

  .middle-buttons button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-weight: bold;
    border: none;
    background-color: #DE9406;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }

  .middle-buttons button:hover {
    background-color: #c47d05;
  }

  .editor-header {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .file-upload {
    display: inline-block;
    cursor: pointer;
    padding: 8px 12px;
    background-color: #DE9406;
    color: white;
    border-radius: 5px;
    font-weight: bold;
  }

  .file-upload input {
    display: none;
  }

  @media (max-width: 1200px) {
    .flex-container {
      flex-direction: column;
      height: auto;
       height: calc(100vh)
    }

    .middle-buttons {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .middle-buttons button{
      font-size: var(--fs-12-16);
      padding: 0.5em;
    }
  }
}