
.flex-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px){
.flex-container {
flex-direction: column;
}
}

.tools-parent-container{
.editor-section {
  flex: 1;
  
}
#inputEditor, #outputEditor {
  height: 400px;
  border: 1px solid #ccc;
}
.middle-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  flex-grow: 0.3;
}
button {
  background-color: #DE9406;
  color: white;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
button:hover {
  background-color: #c97f04;
}
.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;
}
select {
  padding: 6px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 8px;
}
}