.search-result-pop {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1b1f;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    color: var(--text-white);
    padding: 8px;
  }
  
  .search-result-pop .nav-item {
    display: flex;
    padding: 8px;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    transition: background 0.2s;
    border-radius: 4px;
  }
  
  .search-result-pop .nav-item:hover {
    background: #2a2b30;
  }
  
  .search-result-pop .thumbnail {
    width: 50px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search-result-pop .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .search-result-pop .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
  
  .search-result-pop .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
  }
  
  .search-result-pop .meta {
    font-size: 12px;
    color: var(--color-secondary);
    line-height: 1.2;
  }
  
  .no-results {
    padding: 15px;
    text-align: center;
    color: var(--color-secondary);
  }
