/* Search options */
#suggestions {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 1010;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.suggestion-item {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}