.search-parent-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-parent-container h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.search-container {
  display: flex;
  align-items: center;
  border-radius: 31px;
  border: 1px solid #0e1821;
  background: #fff;
  padding: 0px 20px;
  width: 350px;
}

.search-input {
  border: none !important;
  outline: none;
  padding: 5px 0 !important;
  margin-right: 10px;
  border-radius: 31px;
  color: #000;
  flex-grow: 1;
}

.search-input::placeholder {
  color: #000;
}

/* ---- table css ---- */

staking-table-container {
  font-family: "Poppins", sans-serif;
}

.staking-table tbody tr:nth-child(odd) td,
.staking-table tbody tr:nth-child(odd) th {
  background-color: transparent !important;
}

.staking-table tbody tr:hover > td,
table tbody tr:hover > th {
  background-color: transparent !important;
}

.staking-table th {
  border: none;
  border-block-start: none !important;
}

.staking-table thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.0075rem;
}

.staking-table tbody td {
  color: #000;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.125rem */
  letter-spacing: 0.0075rem;
  padding: 10px 0;
}

.staking-table td {
  border: none;
  padding: 16px 12px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

.staking-table tbody tr,
.staking-table tbody td {
  text-align: center;
  vertical-align: middle;
}

.asset-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.asset-box > img {
  height: 32px;
  width: auto;
}

.asset-title {
  width: 85px;
}

.product-pill {
  border-radius: 31px;
  border: 1px solid rgba(14, 24, 33, 0.5);
  background: #fff;
  padding: 6px 16px;
}

.action-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mobile-price {
  display: none;
}

.stake-button,
.view-network-button {
  border-radius: 30px;
  background: linear-gradient(315deg, #f99f38 0%, #f23d4c 100%);
  display: flex;
  padding: 3px 16px;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: fit-content;
  min-width: 150px;

  color: #fff !important;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.3125rem */
  letter-spacing: 0.00875rem;
}

.stake-button.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.view-network-button {
  background: black;
}

.sort-arrow {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.6;
}

th[data-sort]:hover .sort-arrow {
  opacity: 1;
}

@media (max-width: 892px) {
  .staking-table thead {
    font-size: 1, 2rem;
  }

  .staking-table tbody td {
    font-size: 1rem;
  }

  .staking-table th:nth-child(5),
  .staking-table td:nth-child(5) {
    display: none;
  }

  .asset-box > img {
    height: 45px;
  }

  .action-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0 !important;
  }

  .stake-button,
  .view-network-button {
    padding: 6px 8px;
    font-size: 1rem;
    min-width: 100px;
  }
}

@media (max-width: 600px) {
  .search-parent-container {
    flex-direction: column;
  }

  .staking-table th:nth-child(2),
  .staking-table td:nth-child(2),
  .staking-table th:nth-child(3),
  .staking-table td:nth-child(3) {
    display: none;
  }
}
