/*      Estes itens estão dentro de uma div maior .section       */
/*          TERMINAL CONTAINER          */

.terminal-container {
  display: flex;
  flex-direction: column;
  height: calc(30vh - 100px);
  min-height: 162px;
  padding: 2rem;
  background-color: white;
  gap: 1rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: auto;
}

.terminal-container input[type="number"] {
  width: 120px;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 14px;
}

.terminal-container button {
  padding: 8px 16px;
  background-color: #303332;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.terminal-container button:hover {
  background-color: #c0c0c0;
}