.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
  }

  #searchInput {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .results-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: -1px;
  }

  .result-item {
    list-style: none;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s ease-in-out;
  }

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

  .result-item a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
  }

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

  .result-item a:hover {
    color: #0077cc;
  }