<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#autocomplete-container {
          position: absolute;
          left: 0;
          right: 0;
          border-radius: 0 0 30px 30px;
          background-color: #fff;
          max-height: 175px;
          overflow-y: auto;
          z-index: 1000;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
     }
    /* Position Suggestions Container */
    #autocomplete-container {
     scrollbar-width: none;
    -ms-overflow-style: none;
    width: 60%;
    line-break: auto;
    margin-left:18%;
    }
    
    /* Individual Suggestion Item Style */
    .suggestion-item {
        padding: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        color: #333;
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
        text-align: left; /* Align text to the left */
    }
    
    /* Remove border from last item */
    .suggestion-item:last-child {
        border-bottom: none;
    }
    
    /* Hover Effect for Suggestions */
    .suggestion-item:hover {
        background-color: #f7f7f7;
        color: #cf5708; /* Highlight color */
    }
    
    /* Selected Suggestion Style */
    .suggestion-item.selected {
        background-color: #cf5708;
        color: white;
    }
    
    /* Custom Scrollbar Style (Webkit Browsers) */
    #autocomplete-container::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }
    
    #autocomplete-container::-webkit-scrollbar-track {
        background: #f1f1f1; /* Background of the scrollbar track */
    }
    
    #autocomplete-container::-webkit-scrollbar-thumb {
        background: #cf5708; /* Color of the scrollbar handle */
        border-radius: 4px; /* Rounded corners for the scrollbar handle */
    }
    
    #autocomplete-container::-webkit-scrollbar-thumb:hover {
        background: #e64c2b; /* Color when hovering over the scrollbar handle */
    }
    
    /* Hide scrollbar (Alternative) */
    #autocomplete-container {
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
    }
    
    #autocomplete-container::-webkit-scrollbar {
        display: none; /* For Webkit browsers */
    }
   #clear-button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    margin-left: 10px;
    display: none; /* Hide by default */
}
    
    #clear-button:hover {
        color: #333;
    }</pre></body></html>