<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* #search-results {
    position: absolute;
    background: #fff;
    width: 100%;
    border: 1px solid #ddd;
    z-index: 1000;
}
#search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#search-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
#search-results li:hover {
    background: #f4f4f4;
} */

#search-results {
    position: absolute;
    top: 100%;  /* Position below input */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    display: none;  /* Hide initially */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* New Styles for Scrollable Results */
  	max-height: 50vh; /* Max height is half the viewport */
    overflow-y: scroll; /* Enable scrolling inside */
}

#search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#search-results li {
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

#search-results li a {
    color: black;
}

#search-results li a:hover {
    text-decoration: underline;
}

#search-results li .cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

#search-results li svg {
    fill: rgb(50, 118, 39);
}

#search-results li .content {
    display: flex;
    flex-direction: column;
}

#search-results li h6 {
    color: rgb(50, 118, 39);
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

#search-results li p {
    color: black;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

#search-results li:hover {
    background: #f4f4f4;
}</pre></body></html>