  .responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 15px;
  }

  .responsive-table th,
  .responsive-table td {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    text-align: left;
  }

  .responsive-table th {
    background: #fafafa;
    font-weight: 600;
    color: #333;
  }

  .responsive-table td {
    background: #fff;
    color: #444;
  }

  .symbol-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin-bottom: 4px;
  }

  /* Mobile layout */
  @media (max-width: 768px) {
    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
      display: block;
      width: 100%;
    }

    .responsive-table thead {
      display: none;
    }

    .responsive-table tr {
      margin-bottom: 1rem;
      border: 1px solid #e5e5e5;
      border-radius: 6px;
      overflow: hidden;
    }

    .responsive-table td {
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 45%;
      background: #fff;
    }

    .responsive-table td:last-child {
      border-bottom: none;
    }

    .responsive-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-weight: 600;
      color: #888;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.03em;
    }

    .symbol-icon {
      width: 80px;
      height: 80px;
    }
	  

  td[data-label="Narrative Role"] {
    padding-left: 12px !important;
  }

  td[data-label="Narrative Role"]::before {
    display: none;
  }

  }