/*
|--------------------------------------------------------------------------
|Search-Menu CSS Document 
| 

|--------------------------------------------------------------------------
*/

.search-container {
    position: relative;
    display: inline-block;
    width: 300px; /* input ki width ke barabar */
}

#searchInput {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#suggestions {
    position: absolute;
    top: 100%; /* input ke just niche */
    left: 0;
    width: 100%;
    background: #fff;
    border: 0px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 220px;
    overflow-y: auto;
}

    #suggestions div {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #eee; /* item separation */
    }

        #suggestions div:last-child {
            border-bottom: none;
        }

        #suggestions div:hover {
            background-color: #f5f5f5;
            color: #0073e6;
            font-weight: bold;
        }



