#flights-table {
  border-collapse: collapse;
  width: 100%;
}

#flights-table th,
#flights-table td {
  padding: .5rem .6rem;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
}

#flights-table th {
  text-align: left;
  background: #4b4a4a;
}

@media (prefers-color-scheme: light) {
  #flights-table th {
    background: #ece7e7;
  }
}

.flights-muted {
  color: #666;
  font-size: .9em;
  margin-top: .4rem;
}

#flights-table tbody tr {
  cursor: pointer;
}

#flights-table tbody tr:hover td {
  text-decoration: underline;
}

#flights-table tr:hover {
  box-shadow: inset 0 -1px 0 #ccc;
}

#flights-table tr {
  border-bottom: 1px solid #ddd;
}

#flights-table .rowlink:link,
#flights-table .rowlink:visited,
#flights-table .rowlink:hover,
#flights-table .rowlink:active {
  color: inherit !important;
  text-decoration: none;
}

.arrow {
  color: #888;
  font-weight: bold;
  float: right;
  transition: transform 0.2s ease;
}

#flights-table tr:active .arrow {
  transform: translateX(3px);
  /* moves slightly when tapped */
}