@charset "utf-8";
/* CSS Document */
#myInput {
  background-image: url('gray_icon.jpg'); /* Add a search icon to input */
  background-size: 35px 35px;
  background-position: 5px 5px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 94%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 50px; 
  border: 5px solid #ddd; /* Add a grey border */
  margin-bottom: 0px; /* Add some space below the input */
    
}

 #myUL {
  /* Remove default list styling */
  list-style-type: none;
  padding: 0;
  margin: 0;
}


#myUL 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-family: Baskerville;
  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) {
  background-color: #eee; /* Add a hover effect to all links, except for headers */
}