body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #ece9e6, #ffffff);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

input,
select,
button {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
}

input:focus,
select:focus {
  border-color: #777;
  outline: none;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

label {
  margin-top: 10px;
  font-weight: bold;
}

#outputField {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  background-color: #f9f9f9;
}

/* Stil für die Navigationsleiste */
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Stil für die Links in der Navigationsleiste */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Stil für die Links, wenn die Maus darüber fährt */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}
