html {
  font-family: "interstate-condensed", sans-serif;
  font-size: 2.5vh;
  letter-spacing: 1px;
}

h1 {
  color: #194540;
  font-size: 2rem;
  margin: 0.5rem;
}

#title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0;
  padding-bottom: 1rem;
}

img {
  height: 1.5em;
  width: auto;
}

thead > tr {
  position: sticky;
  top: 0px;
}

thead > tr > th {
  background-color: #edf5ed;
  position: relative;
}

thead > tr > th:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
}

table th:first-child {
  text-align: left;
  font-weight: 900;
  font-size: 1.5rem;
  width: 40%;
  border-radius: 30px 0px 0px 0px;
}

table th:last-child {
  border-radius: 0px 0px 30px 0px;
}

th {
  text-align: center;
  color: #194540;
  padding: 1rem;
  width: 15%;
}

table td:first-child {
  text-align: left;
}

td {
  text-align: center;
  padding: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  i {
    font-size: 0.9rem;
  }
}

td:empty::before {
  content: "-";
}

table {
  width: 100%;
  height: 20%;
  border-collapse: collapse;
  overflow: auto;
}

tbody {
}

.content {
  flex-grow: 1;
  overflow: hidden;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  overflow: hidden;
}

.app {
  padding: 1rem;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  height: 100%;
  overflow: hidden;
  justify-content: flex-start;
}

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