/* Hide rows from 13 to 20 by setting their height to 0 and making them invisible */
tbody tr:nth-child(n+13) {
    height: 0;
    display: none;
    visibility: hidden;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.centered {
    text-align: center;
}

.status-bar {
    background-color: #ddd;
    color: #000;
    height: 50px;
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-bar-left,
.status-bar-middle,
.status-bar-right {
    display: flex;
    margin: 10px 20px;
}

#language-switcher a {
    margin-left: 10px;
}

#language-switcher img {
    width: "30px";
}

