/* =================================== */
/* search-results.css */
/* =================================== */

/* Search Results Table View */
  .ze-search-results {
    display: none;
  }

  .ze-search-results.ze-visible {
    display: block;
  }

  .ze-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 80px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Dinpro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
  }

  .ze-back-btn:hover {
    border-color: #00E5AA;
    color: #00E5AA;
  }

  .ze-results-table-wrap {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
  }

  .ze-results-table {
    width: 100%;
    border-collapse: collapse;
  }

  .ze-results-table thead th {
    font-family: 'Dinpro', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0,0,0,0.4);
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    white-space: nowrap;
  }

  .ze-results-table tbody td {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    font-weight: 400;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: middle;
  }

  .ze-results-table tbody tr {
    transition: background 0.15s ease;
    cursor: pointer;
  }

  .ze-results-table tbody tr:hover {
    background: rgba(0,0,0,0.03);
  }

  .ze-results-table tbody tr:last-child td {
    border-bottom: none;
  }

  .ze-table-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ze-table-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bitstream Swiss 721', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
  }

  .ze-table-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ze-table-ticker-name {
    font-weight: 500;
    color: rgba(0,0,0,0.85);
    font-size: 15px;
  }

  .ze-table-company {
    font-size: 12px;
    color: rgba(0,0,0,0.4);
    font-weight: 400;
  }

  .ze-results-count {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
  }

  .ze-no-search-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
  }

  .ze-results-type-badge {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .ze-results-type-stock {
    background: rgba(0,180,130,0.12);
    color: #007A5A;
  }
  .ze-results-type-etf {
    background: rgba(123,97,255,0.1);
    color: #5B47B0;
  }

  @media (max-width: 768px) {
    .ze-results-table thead { display: none; }
    .ze-results-table tbody td {
      display: block;
      padding: 6px 20px;
      border-bottom: none;
    }
    .ze-results-table tbody td:first-child {
      padding-top: 16px;
    }
    .ze-results-table tbody td:last-child {
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .ze-results-table tbody td::before {
      content: attr(data-label);
      display: block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(0,0,0,0.35);
      margin-bottom: 2px;
    }
    .ze-results-table tbody td:first-child::before { content: ''; }
    .ze-filter-pill { padding: 6px 14px; font-size: 12px; }
  }
