body {
  font-family: sans-serif;
  display: flex;
  justify-content: start;
  align-items: start;
  height: 100vh;
  margin: 0;
  background-color: #f4f7f6;
}

form {
  background: white;
  margin-right: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 200px;
  font-size: 10px;
}

div {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 10px;
  border-color: #007bff;
  color: dark-gray;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
}

button:hover {
  border-color: #0056b3;
}

output {
  width: 500px;
  height: 150px;
  word-break: break-all;
  font-size: 16px;
  background-color: white;
  color: black;
  position: fixed;
  bottom: 0;
  left: 0;
}

#controls {
  width: 150px;
}

#controls > button {
  width: 100px;
  margin: 10px;
}
