.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto; 
}  
  
.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    color: inherit;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-item .title {
    flex: 1;
    margin-bottom: 2px;
}

.search-result-item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-item .category {
    font-size: 12px;
    color: #6c757d;
}

.search-result-item .type-badge {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #e9ecef;
    color: #495057;
} 