* {
  box-sizing: border-box;
}

body {
  margin: 4em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  display: none;
}

#display input,
#display button,
#display select {
  font-size: 16px;
  padding: 5px;
  min-width: 20%;
  background-color: #0003;
  border-color: #006969;
  border-style: solid;
  border-width: 1px;
  margin-right: 20px;
}

#display table {
  width: 100%;
}

#display table,
#display tr,
#display td,
#display th {
  border-style: solid;
  border-width: 0.5px;
  border-color: #000;
  border-collapse: collapse;
  padding: 5px;
}

#display table th {
  text-align: left;
}

#display table>tr :nth-child(2) {
  width: 100%;
}

#display .addFahrt button {
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
}

#display .addFahrt {
  padding: 5px;
}

.popup {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 80%;
}

@media (prefers-color-scheme: dark) {

  * {
    color: white;
  }

  #display table,
  #display tr,
  #display td,
  #display th {
    border-color: #fff;
  }


  .popup {
    background-color: #000;
  }


}

@media print {
  #display {
    display: none;
  }

  * {
    color: #000 !important;
    margin: 0;
    padding: 0;
  }

  .page * {}

  .page {
    page-break-after: always;
  }

  .page table {
    width: 100%;
  }

  .page th {
    width: 50%;
  }

  .page table td,
  .page table th {
    text-align: left;
  }

  .page table,
  .page tr,
  .page td,
  .page th {
    border-style: solid;
    border-width: 0.5px;
    border-color: #000;
    border-collapse: collapse;
    padding: 5px;
  }
}