body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #121212;
  color: #ffffff;
}
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tabs button {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  border-radius: 5px;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
}

.tabs button:hover {
  background-color: #1565c0;
}
.container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 12px;
  box-sizing: border-box;
  background-color: #2c2c2c;
  color: white;
  border: 1px solid #424242;
  border-radius: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #1e1e1e;
}
.filter-input {
  width: 100%;
  box-sizing: border-box;
  margin-top: 5px;
}

table,
th,
td {
  border: 1px solid #424242;
}

th,
td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #424242;
  cursor: pointer;
}

th:hover {
  background-color: #616161;
}
