

.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;
}
.css-beautify-container {
  display: flex;
  height: calc(100vh - 70px);
  overflow: hidden;
  gap: 16px;
}


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

@media (max-width: 1024px){
.css-beautify-container {
flex-direction: column;
align-items: center;
}
.editor-section{
  width: 100%;
}
}
#inputEditor, #outputEditor {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.middle-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 12px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.middle-buttons button {
  padding: 10px 16px;
  background-color: #DE9406;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.middle-buttons button:hover {
  background-color: #DE9406;
}
.controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.controls input[type="file"] {
  font-size: 14px;
}
.controls select,
.controls input[type="checkbox"] {
  font-size: 14px;
}
.controls label {
  font-size: 14px;
}
}