html {
  min-width: 100%;
  min-height: 100%;
  background-color: #d1d1d1;
  background-image: url('../img/background.webp');
  background-repeat: unset;
  background-size: contain;
}

body {
  margin: 0;
  background-color: rgba(92, 113, 72, 0.5);
  padding: 40px;
  min-height: calc(100vh - 100px);
  min-width: calc(100% - 100px);
  position: relative;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1,
h2 {
  color: white;
  font-variant: small-caps;
  font-size: 1.75em;
  display: inline-block;
  text-align: center;
  width: calc(100% - 250px);
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  width: 100%;
}

h2 {
  text-align: left;
}

h2:nth-child(4) {
  margin-top: 75px;
}

.scroll {
  overflow: auto;
  max-height: 500px;
  box-shadow: 0px 2px 10px 2px #00000088;
}

table {
  width: 100%;
  /* box-shadow: 0px 5px 20px 5px #00000088; */
}

table,
th,
td {
  border: 1px solid white;
  border-collapse: collapse;
  padding: 10px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05em;
}

th {
  font-weight: bold;
}

th:nth-last-child(-n+4) {
  width: 200px;
  text-align: center;
}

th:nth-last-child(-n+1) {
  width: 75px;
  text-align: center;
}

.zahnkreuz th:nth-child(3) {
  width: 200px;
}

thead {
  background-color: rgba(92, 113, 72, 1);
}

tr:nth-child(2n) {
  background-color: rgba(92, 113, 72, 0.5);
}

tbody tr:hover {
  background-color: #ffffff44;
}

img {
  height: 25px;
  width: 25px;
  filter: invert(100%);
  margin-left: 5px;
  margin-right: 5px;
  transition: filter 0.3s;
}

a:hover>img,
a:focus>img {
  filter: invert(40%);
  transition: filter 0.3s;
  outline: none;
}

a:hover,
a:focus {
  outline: none;
}

.zahnkreuz {
  clear: both;
}

.backdrop {
  background-color: #00000088;
  height: 100vh;
  width: 100vw;
  position: absolute;
  margin: -40px -40px;
  z-index: 100;
}

.dialog {
  background-color: rgb(92, 113, 72);
  border: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 101;
}

.dialog h3 {
  text-transform: uppercase;
}

.dialog button {
  background-color: white;
  color: #364429;
  border: 1px solid white;
  padding: 10px;
  margin: 0px 15px;
  font-size: 1rem;
  text-transform: uppercase;
  width: 120px;
  transition: 0.3s;
}

.dialog button:hover {
  cursor: pointer;
  background-color: #364429;
  color: white;
  transition: 0.3s;
}