.repo-search-wrapper {
    position: relative;
    margin-bottom: 2rem;
  }
  
  #repo-search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
  }
  
  .repo-search-results {
    position: absolute;
    width: 100%;
    top: calc(100% + 8px);
    background: white;
    border-radius: 12px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .repo-search-result a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
  }
  
  .repo-search-result a:hover {
    background-color: #f0f8ff;
    color: #3472B0;
  }
  
  .no-results {
    padding: 12px;
    color: #999;
    font-style: italic;
  }

  
  