/* Stil for kroppen */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Stil for fieldset */
fieldset {
  background-color: #ffffff;
  border: 2px solid #cccccc;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Stil for legend */
legend {
  font-weight: bold;
  color: #333333;
}

/* Stil for labels */
label {
  display: block;
  margin-bottom: 5px;
  color: #555555;
}

/* Stil for select og input */
select, input[type="number"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Stil for knapp */
button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

/* Stil for knapp ved hover */
button:hover {
  background-color: #45a049;
}

/* Stil for utskrift p-tag */
#utskrift {
  margin-top: 20px;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
