.website-search {
    position: relative;
    width: 100%;
    max-width: 500px;
}

#searchInput {
   /* width: 100%;*/
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

#searchInput:focus {
    border-color: #333;
}

#searchResults {
    display: none;
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.search-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.search-item:hover {
    background: #f5f5f5;
}

.search-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.search-description {
    font-size: 13px;
    color: #777;
}

.no-results {
    padding: 15px;
    color: #777;
}