        .search-container {
            position: relative;
            margin: 5px;
        }
        #search {
            width: 300px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .results-dropdown {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            border: 1px solid #ccc;
            background-color: white;
            max-height: 320px;
            max-width: 320px;
            overflow-y: auto;
            display: none;
            z-index: 10;
        }
        .result-item {
            padding: 10px;
            cursor: pointer;
            font-size: 12px;
        }
        .result-item:hover {
            color: blue;
        }
        .highlight {
            color: purple; /* Highlight color */
            font-weight: bolder;
        }
        .no-results {
            padding: 10px;
            color: gray;
            font-size: 14px;
            text-align: center;
        }