.activeRow h2 {
  font-size: 21px;
  line-height: 32px;
  text-align: center;
  margin: 0 0 0 5px;
  padding: 5px;
  border-bottom: 2px solid;
}

.activeRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.activeRow table {
  width: 100%;
  border-collapse: collapse;
}
.activeRow table td {
  border-top: var(--v2-row-border);
  padding: 5px;
  cursor: default;
}
.activeRow tbody tr:hover {
  background: var(--v2-row-hover-color);
}
.activeRow th {
  font-size: 12px;
  text-align: right;
  padding: 2px 5px;
}

.topstockBox {
  padding: 10px;
  /* border: 1px solid var(--v2-row-border-color); */
  border-radius: 5px;
  box-sizing: border-box;
  min-height: 545px;
  /* background-color: var(--card-bg-primary);  */
}
td.tdCompany {
  width: 110px;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 100%;
}

.symb_company {
  display: block;
  min-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
span.symb {
  font-weight: bold;
  text-decoration: underline;
  margin-right: 3px;
}
span.company {
  font-size: 11px;
  color: #767676;
}

@media (max-width: 1100px) {
  .symb_company {
    min-width: 20px;
  }
  span.company {
    display: none;
  }
}
/* ── Exchange page: mobile tabs ──────────────────────────────────────────── */

.exch-mobile {
  display: none;
}

.exch-tabs {
  display: flex;
  border-bottom: 1px solid var(--v2-table-border-color);
  margin-bottom: 5px;
}
.exch-tab {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--subdued-font-color);
  border-bottom: 2px solid transparent;
}
.exch-tab.active {
  background: var(--v2-table-heading-bg);
  color: var(--main-font-color);
  border-bottom-color: var(--main-font-color);
}

@media (max-width: 900px) {
  .symb_company {
    min-width: 20px;
  }
  span.company {
    display: inline;
  }

  .activeRow {
    grid-template-columns: 1fr;
  }
  .symb_company {
    max-width: 97px;
  }

  /* Swap desktop grid for mobile tabs */
  .exch-desktop {
    display: none;
  }
  .exch-mobile {
    display: block;
  }
}

.indexesTopGrid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 10px;
  min-height: 365px;
}
@media (max-width: 900px) {
  .indexesTopGrid {
    grid-template-columns: 1fr;
  }
}
