body {
  background-color: #f4f2f7;
  font-family: 'Franklin Gothic', sans-serif;
  margin: 0;
  padding: 2rem;
  color: #333;
}

.container {
  background: white;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
  height: 90px; /* iets groter dan voorheen */
  margin-bottom: 1rem;
}

#output {
  margin-top: 2rem;
  background: #f0f0fa;
  padding: 1rem;
  border-radius: 8px;
  white-space: pre-wrap;
  font-family: 'Franklin Gothic', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  min-height: 100px;
  overflow-wrap: break-word;
}

button {
  background-color: #4c2a85;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  width: 140px;
  height: 48px;
  box-sizing: border-box;
  text-align: center;
}

button:hover {
  background-color: #3a1f5a;
}
