html[class=dark] {
  filter: invert(1) hue-rotate(195deg);
  transition: color 300ms, background-color 300ms;  
}

select[readonly] {
  background: #eee; /*Simular campo inativo - Sugestão @GabrielRodrigues*/
  pointer-events: none;
  touch-action: none;
}

#myUL, .listitems {
  position: relative;
  z-index: 1000;
  top: 100%;
  left: 0px;
  width: 100%;
  list-style-type: none;
  overflow: scroll;
  padding: 0;
  margin: 0;
}

.card {
  margin-top: 80px;
}

.table {
  display: table;
}
.table-row {
  display: table-row;
}
.table-row:hover {
  background-color: #ECECEC !important;
}
.table-cell {
  display: table-cell;
  padding: 10px;
  border: 1px solid black;
}
.table-row:nth-child(even) {
  background-color: rgba(0,0,0,.05);
}

#myUL li a, .listitems li a {
  border: 1px solid #ddd; /* Add a border to all links */
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6; /* Grey background color */
  padding: 12px; /* Add some padding */
  text-decoration: none; /* Remove default text underline */
  font-size: 18px; /* Increase the font-size */
  color: black; /* Add a black text color */
  display: block; /* Make it into a block element to fill the whole list */
}

#myUL li a:hover:not(.header), .listitems li a:hover:not(.header) {
  background-color: #eee; /* Add a hover effect to all links, except for headers */
}
/*counter*/
.counter {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-radius: 5px;
}

.count-title {
  font-size: 40px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.count-text {
  font-size: 13px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: #007BFF;
}
/*end counter*/