
  .browse-container {
    max-width: 750px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .browse-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .browse-header h1 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 8px;
  }

  .browse-header p {
    color: #666;
    font-size: 14px;
  }

  /* Search Section */
  .browse-search {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }

  .browse-search form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }

  .browse-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
  }

  .browse-search input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
  }

  .browse-search button {
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .browse-search button:hover {
    background: #2980b9;
    transform: translateY(-1px);
  }

  .browse-search .clear-search {
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .browse-search .clear-search:hover {
    background: #c0392b;
    transform: translateY(-1px);
  }

  /* Alphabet Filter */
  .alphabet-filter {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }

  .alphabet-filter h3 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #2c3e50;
    text-align: center;
  }

  .filter-description {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #666;
    text-align: center;
  }

  .alphabet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32px, 1fr));
    gap: 4px;
    max-width: 750px;
    margin: 0 auto;
  }

  .alphabet-btn {
    padding: 6px 4px;
    background: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
    border: 2px solid transparent;
  }

  .alphabet-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .alphabet-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
  }


  /* Results Section */
  .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
  }

  .results-count {
    font-size: 14px;
    color: #666;
  }

  .results-count strong {
    color: #3498db;
    font-size: 15px;
  }

  .sort-options select {
    padding: 8px 12px;
    border: 1px solid #dfe1e5;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
  }

  /* Result Cards */
  .results-grid {
    display: grid;
    gap: 12px;
  }

  .result-card {
    background: white;
    padding: 14px 16px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(32,33,36,0.08);
    transition: box-shadow 0.2s;
    border-left: 3px solid transparent;
    margin-bottom: 0px;
  }

  .result-card:hover {
    box-shadow: 0 1px 5px rgba(32,33,36,0.12);
    border-left-color: #3498db;
  }

  .result-url {
    color: #202124;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 500;
  }

  .result-domain {
    color: #5f6368;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .result-domain strong {
    color: #202124;
  }

  .result-title {
    font-size: 20px;
    color: #1a0dab;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
  }

  .result-title:hover {
    text-decoration: underline;
  }

  .result-description {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #666;
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .full-url {
    color: #3498db;
    text-decoration: none;
    font-size: 12px;
  }

  .full-url:hover {
    text-decoration: underline;
  }

  .ssl-grade {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 11px;
  }

  .ssl-a { background-color: #d4edda; color: #155724; }
  .ssl-b { background-color: #fff3cd; color: #856404; }
  .ssl-c { background-color: #f8d7da; color: #721c24; }
  .ssl-a-plus { background-color: #d1ecf1; color: #0c5460; }

  /* No Results */
  .no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .no-results h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .no-results p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .no-results a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
  }

  .no-results a:hover {
    text-decoration: underline;
  }

  /* Pagination */
  .pagination-wrapper {
    margin: 20px 0;
  }

  .pagination-info {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .pagination-btn {
    padding: 8px 14px;
    border: 1px solid #dfe1e5;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
  }

  .pagination-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
  }

  .page-numbers {
    display: flex;
    gap: 4px;
  }

  .page-number {
    padding: 8px 12px;
    border: 1px solid #dfe1e5;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 36px;
    text-align: center;
  }

  .page-number:hover {
    background: #f8f9fa;
    border-color: #3498db;
  }

  .page-number.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
  }

  .back-link {
    margin: 20px 0;
  }

  .back-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
  }

  .back-link a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .browse-search form {
      flex-direction: column;
    }

    .browse-search input,
    .browse-search button,
    .browse-search .clear-search {
      width: 100%;
    }

    .alphabet-buttons {
      grid-template-columns: repeat(7, 1fr);
    }

    .results-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .pagination-btn,
    .page-number {
      padding: 6px 10px;
      font-size: 12px;
    }

    .pagination-info {
      font-size: 12px;
    }
  }