
  * {
    box-sizing: border-box;
  }
  
  #search-form{
    position: relative;
  }

  .nav-search-icon {
    position: absolute;
    right: 15px;
    top: 36px;
  }

  .result-desc {
    font-size: 12px;
    margin-bottom: 0;
  }

  .result-page-name {
    margin-bottom: 4px;
    font-size: 14px;
}

  .result-name {
    margin-bottom: 4px;
  }

  #myInput {
    background-image: url('/css/searchicon.png');
    background-position: 10px 12px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 16px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    margin-top: 20px;
  }
  
  .myUL {
    position: absolute;
    list-style-type: none;
    padding: 0;
    margin: 0;
    left: 0;
    right: 0;
  }
  
  .myUL li a {
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block
  }
  
  .myUL li a:hover:not(.header) {
    background-color: #eee;
  }
 
