
body {
  background-color: black;
  color: green;
  font-weight: bold;
  text-align: center;
}

h1 {
  color: green;
  font-family: "Times New Roman";
  text-align: left;
  font-size: 30px;
}

nav ul {
  list-style: none;
  padding: 10px;
  margin: 5px;
}

nav li {
  background-color: #1E1E1E;
  display: inline;
  border-style: solid inset inset solid;
  border-width: 4px 4px 4px 4px;
  border-top-color: #005800;
  border-left-color: #005800;
  margin: 0 8px 0 0;
}

nav li a {
  color: green;
  margin: 10px 10px 10px 10px;
}

#SearchInput {
  color: green;
  background-image: url("Blink.gif"); /* Add a search icon to input */
  background-color: #1E1E1E;
  background-position: 3px 7px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  background-size: 5%;
  width: 100%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 1px solid darkgreen; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
  
}

#SearchInput::placeholder {
  color: darkgreen;
}

#filterToggle {
  font-weight: bold;
  background-color: #222;
  color: red;
  padding: 8px;
  text-align: left;
}

#tagFilters {
  display: none;
  background-color: #111;
  padding: 8px;
}

#filterArrow {
  margin-left: 5px;
}


#EpisodeTable {
  border-collapse: collapse; /* Collapse borders */
  width: 100%; /* Full-width */
  border: 1px solid darkgreen; /* Add a grey border */
  font-size: 18px; /* Increase font-size */
}


#EpisodeTable th, #EpisodeTable td {
  text-align: left; /* Left-align text */
  padding: 12px; /* Add padding */
  border-color: darkgreen;
}

#EpisodeTable tr {
  /* Add a bottom border to all table rows */
  border-bottom: 1px solid darkgreen;
}

#EpisodeTable .header, #EpisodeTable tr:hover {
  /* Add a grey background color to the table header and on hover */
  background-color: #1E1E1E;
}


#noResultsRow {
  display: none;
  font-style: italic;
  color: green;
  text-align: center;
  background-color: black;
}

/* Optional: style the whole row across multiple columns */
#noResultsRow td {
  padding: 10px;
  text-align: center;
  color: green;
}


a {
  color: green;
  font-style: italic;
}
  







