#searchResults {
    font-family: 'Raleway-Regular', sans-serif;
    position: absolute;
    top: 40px;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none; /* Hide by default */
}

#searchResults:empty {
    display: none; /* Hide when empty */
}

#searchResults:not(:empty) {
    display: block; /* Show when has content */
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f8f8;
}

.search-result-item a {
    font-family: 'Raleway-Regular', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.2s ease;
}

.search-result-item a:hover {
    color: #000;
}

/* Custom scrollbar for search results */
#searchResults::-webkit-scrollbar {
    width: 6px;
}

#searchResults::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* No results message */
#searchResults .no-results {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}