
.search-page {
    max-width: 720px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .search-box {
    margin: 2rem 0;
    position: relative;
  }
  
  #search-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
  }
  
  #search-input:focus {
    border-color: #0066cc;
  }
  
  #search-counter {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.9rem;
  }
  
  #search-results {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  
  #search-results li {
    padding: 1rem 0;
    border-bottom: 1px dashed #eee;
  }
  
  #search-results a {
    font-size: 1.2rem;
    color: #0066cc;
    text-decoration: none;
  }
  
  #search-results a:hover {
    text-decoration: underline;
  }
  
  #search-results mark {
    background: #ffeb3b;
    color: #000;
    border-radius: 3px;
    font-weight: 600;
  }
  
  #search-results p {
    margin: 0.6rem 0 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
  }