body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100dvh;
  background: black;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
}

span {
  color: white;
}

.logo {
  width: 200px;
  filter: invert(1);
}

@media screen and (max-width: 1024px) {
  .logo {
    width: 125px;
  }
}

.table-container {
  flex: 1;
  overflow-x: auto;
}

@media screen and (max-width: 1024px) {
  .table-container {
    width: 100%;
  }
}

.styled-table {
  border-collapse: collapse;

  font-size: 0.9rem;

  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);

  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .styled-table {
    font-size: 0.75rem;
  }
}

.styled-table thead {
  position: sticky;
  top: 0;
}

.styled-table thead tr {
  background-color: #161616;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #e2e2e2;
}

.styled-table tbody tr.active-row {
  font-weight: bold;
  color: #161616;
}

.footer {
  margin: 25px 0;
}
