body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
  color: #333;
}

h1 {
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
}

.version {
    position: absolute;
    top: 20px;
    right: 50px;
}

.inputNumber {
    width: 50px;
}

.divCmd {
    padding: 20px;
}

/* divs side by side */
.flex-container {
  display: flex; /* Makes the child divs flex items */
  gap: 0px; /* Adds space between the divs */
}

.box {
  flex: 1; /* Divs will share available space equally */
  /* Add other styling like background, padding, etc. */
  padding: 0px;
}

/* .box2 {
  flex: 1;
  padding: 10px;
} */