body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #eee;
  margin: 0;
  padding: 0;
  text-align: center;
}
header img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
h1 {
  margin: 1rem 0 0.5rem 0;
}
nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
nav a {
  color: #00ffcc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #00ffcc;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
nav a:hover {
  background-color: #00ffcc;
  color: #000;
}
p.disclaimer {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}
#globalSearch {
  width: 50%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #222;
  color: #eee;
}
table.dataTable {
  color: #eee;
  background-color: #222;
}
table.dataTable thead {
  background-color: #333;
}
table.dataTable tbody tr:nth-child(even) {
  background-color: #1a1a1a;
}
table.dataTable a {
  color: #00ffcc;
  text-decoration: none;
}
table.dataTable a:hover {
  text-decoration: underline;
  color: #00ffee;
}
canvas {
  max-width: 100%;
  height: 400px;
}

.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate {
  color: #eee;
}

.dataTables_length select {
  background-color: #222;
  color: #eee;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 0.2rem;
}

.select2-container--default .select2-selection--single {
  background-color: #222;
  color: #eee;
  border: 1px solid #444;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #eee;
}

.select2-container--default .select2-results__option {
  background-color: #222;
  color: #eee;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #00ffcc;
  color: #000;
}

.select2-dropdown {
  background-color: #222;
  border: 1px solid #444;
}

@media (max-width: 600px) {
  header img {
    max-height: 150px;
  }
  nav {
    flex-direction: column;
  }
  #globalSearch {
    width: 90%;
  }
  table.dataTable {
    width: 100% !important;
    font-size: 0.8rem;
  }
}
