/*
|--------------------------------------------------------------------------
|Search-Menu CSS Document 
| 

|--------------------------------------------------------------------------
*/

.search-container {
    position: relative;
    display: inline-block;
    width: 250px; /* input ki width ke barabar */

}

#searchInput {
    width: 100%;
    height: 25px;
    padding: 8px;
    box-sizing: border-box;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #FF0000;
    font-weight: normal;
    text-transform: capitalize;
}

#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;
    text-transform: capitalize;
}

    #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: #FDC800;
            color: #000000;
            font-weight: normal;
            text-transform: capitalize;
            /*text-transform:uppercase;*/
        }

