/* start header */
.small-font {
    font-size: 0.9rem;
    /* doesn't get it if in .css! */
  }
  
  .row-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }
  
  
  
  .search-container {
    position: relative;
  }
  
  #results {
    position: absolute;
    left: -30%;
    top: 100%;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 160%;
    /* Set the results container width */
    max-width: 160%;
    /* Ensure the results container does not exceed its parent width */
    z-index: 1;
  }
  
  @media (max-width: 768px) {
    #results {
      width: 160%;
      /* Set the results container width to 100% on mobile */
    }
  }
  /* end header  */
  