body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #161617;
  color: #acacac;
  font-family: "Roboto", sans-serif;
}

h1 {
  margin: 1rem;
  font-size: 2.5rem;
}

p {
  margin: 0;
  font-weight: 600;
}

section {
  width: 100%;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.filters-container {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

label {
  margin-right: 0.25rem;
}

select {
  margin: 0.5rem;
  width: 15rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #1f1f20;
  background: #19191a;
  outline: none;
  color: #acacac;
}

table {
  width: 90%;
  border-collapse: collapse;
}

table tr > th {
  border: 1px solid rgb(102, 102, 102);
  padding: 0.75rem;
  text-align: center;
  background-color: #111111;
}

table tr > th:first-child {
  width: 50px;
}

table tr > td {
  border: 1px solid rgb(102, 102, 102);
  padding: 0.5rem;
  text-align: center;
}

table tr:nth-child(even) > td {
  background-color: #242424;
}

table tr > td:first-child {
  width: 50px;
}

button {
  background: #4b4b4d;
  border: 0;
  border-radius: 0.2rem;
  color: #acacac;
  cursor: pointer;
  font-size: 1.1rem;
}
