html {
  height: 100%;
  font-family: "Lucida", sans-serif;
}
body {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#schlussbalken {
  bottom: 0;
  position: relative;
  width: 100%;
  height: 10px;
  margin: 0.1em 0 0.1em 0;
  background-color: #467d95;
  border-radius: 2px;
}

#lesehilfe.text {
  margin-left: 2%;
  max-width: 630px;
  font-style: italic;
  font-size: 0.8em;
}

.container {
  max-width: 650px;
}

button {
  cursor: pointer;
}
.number {
  margin: 5px;
  gap: 2px;
  display: flex;
  flex-direction: row;

  align-items: center;
}
.ageInput {
  margin-left: 5px;
  gap: 2px;
  display: flex;
  flex-direction: row;
}
.minus,
.plus,
.minusAge,
.plusAge {
  width: 20px;
  height: auto;
  background: rgb(105, 125, 145);
  border-radius: 4px;
  padding: 4px 4px 4px 4px;
  border: 1px solid rgb(105, 125, 145);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: white;
}

.minus:disabled,
.plus:disabled,
.minusAge:disabled,
.plusAge:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  border: rgba(0, 0, 0, 0.38);
  color: rgba(0, 0, 0, 0.38);
}
input {
  height: 24px;
  max-width: 30px;
  text-align: center;
  font-size: 1em;
  border: 1px solid rgb(105, 125, 145);
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}
.clients td p {
  color: #fac300;
}
.clientSystem td p {
  color: #697d91;
}
.team td p {
  color: #699673;
}
.department td p {
  color: #699bbe;
}
.institution td p {
  color: #825a7d;
}

.wage {
  font-weight: bold;
  font-size: 1em;
}
td {
  font-size: 0.8em;
}
th {
  text-align: left;
  padding-right: 2px;
}
.controls-container {
  display: flex;
}
.age {
  display: flex;
  align-items: center;
}
h3 {
  text-align: center;
}
#verticalLine {
  border-left: 2px solid black;
  height: 1.5em;
  top: 0;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  h3 {
    margin: 0;
  }
}

#wage {
  transition: all 0.2s;
  max-height: 300px;
}

#wage.pre-animation {
  opacity: 0;
  max-height: 0;
}
input:disabled div {
  color: rgb(105, 125, 145);
}
