html {
  width: 100%;
  height: 100%;
}

body {
  background-color: #edece6;
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  grid-template-rows: min-content 1fr min-content;
  width: 100%;
  height: 100%;
  grid-template-areas:
    "header header"
    "left-sidebar main"
}

header {
  grid-area: header;
}

footer {
  grid-area: footer;
}

#sidenav {
  grid-area: left-sidebar;
  display: inline-block;
  background-color: #bccbce;
  color: #596e79;
}

.pure-menu-link {
  color: #596e79;
}

header {
  background-color: #596e79;
  height: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#header__name {
  color: #edece6;
  padding: 0 2rem 0 1rem;
  display: flex;
  align-items: center;
  height: 100%;
}

#content {
  margin: 0.5rem 1rem;
  grid-area: main;
  overflow: auto;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.aktives-mitglied {
}

.passives-mitglied {
  font-style: italic;
  color: #888;
}

.nicht-spielberechtigtes-mitglied {
  text-decoration: line-through;
}

.pure-table tfoot {
  border-top: 1px solid #cbcbcb;
}

.margin-1-0 {
  margin: 1rem 0;
}

.status-u19 {
  border-radius: 10px;
  border: 1px solid green;
  background-color: lightgreen;
  padding: 1px;
}

.status-u18 {
  border-radius: 10px;
  border: 1px solid blue;
  background-color: lightblue;
  padding: 1px;
}

.status-gastspieler {
  border-radius: 10px;
  border: 1px solid yellow;
  background-color: lightyellow;
  padding: 1px;
}

.status-ruhend {
  border-radius: 10px;
  border: 1px solid red;
  background-color: orange;
  padding: 1px;
}

.fit-content {
  width: 0;
  min-width: fit-content;
}
