body {
  font-family: Arial, sans-serif;
  font-size: 11pt;
  background-color: #f4f4f9;
  margin: 0;
}

main {
  margin: 20px;
  padding: 0;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 80%;
  max-width: 600px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333333;
}

label {
  font-weight: bold;
  color: #555555;
}

textarea {
  width: 98%;
  height: 300px;
  padding: 2px;
  font-family: Consolas, monospace;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  resize: vertical;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

.result {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #4caf50;
  border-radius: 4px;
  font-family: Consolas, monospace;
  font-size: 14px;
  color: #333333;
  white-space: pre-wrap;
}

#inputData {
  width: 100%;
}

.version-number {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  color: gray;
  opacity: 0.7;
  z-index: 1000;
}

table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.korrekt {
  background-color: green;
  color: white;
}
.falsch {
  background-color: red;
  color: white;
}
.orange {
  background-color: orange;
  color: white;
}

/* Navbar */

.navbar {
  background-color: #333;
  overflow: hidden;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  float: left;
}

.navbar a,
.navbar strong {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #575757;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Confetti */
#emitter {
  visibility: hidden;
  background-color: #222;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 40%;
  left: 0%;
}
.dot-container {
  position: absolute;
  left: 0;
  top: 0;
  overflow: visible;
  z-index: 5000;
  pointer-events: none;
}
.dot {
  position: absolute;
  pointer-events: none;
}
