
.search-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

#headerSearch {
    width: 100%;
    padding: 14px 16px; 
    font-size: 1em;          
    border: none;           
    border-radius: 8px;      
    outline: none;
    transition: all 0.3s ease;
    background-color: #f0f0f0; 
    color: #333;              
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}


#headerSearch:focus {
    background-color: #fff;  
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25); 
}


#headerSearchResults {
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
}

/* Matokeo ya list items */
#headerSearchResults li {
    padding: 14px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 1em;
}

#headerSearchResults li:hover {
    background-color: #f0f0f0;
}

#headerSearchResults .snippet {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 2px;
}

#headerSearchResults mark {
    color: #000;
    font-weight: bold;
}
