.search-wrapper {
  position: absolute;
    width: 100%;
    z-index: 1000;
  }

.search-popup {
    width: 400px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 5px auto;
    max-height: 400px;
    overflow-y: auto;
    display: none;
  }
  
  .search-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }
  
  .search-card:hover {
    background: #f5f5f5;
  }
  
  .search-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .search-info {
    flex: 1;
  }
  
  .search-name {
    font-weight: 600;
    font-size: 14px;
  }
  
  .search-desc {
    font-size: 12px;
    color: #666;
  }
  