
  .transaction-history {
    width: 100%;
  }
  
  .history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .section-title {
    font-size: 20px;
    font-weight: bold;
  }
  
  .total-count {
    color: #888;
  }
  
  .filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .type-filters button,
  .sort-options span {
    background: transparent;
    border: none;
    color: #ccc;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .type-filters button.active,
  .sort-options span.active {
    background: #333;
    color: #fff;
  }
  


  
  .transaction-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
  }
  
  .transactions-cell {
    flex: 1;
    padding: 0 10px;
    display: flex;
    align-items: center;
  }
  
  .cell-received {
    gap: 8px;
    display: flex;
    align-items: center;
  }
  
  .item-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  .status {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .status-success {
    color: #A8CE67;
  }
  
  .status-failed {
    color: #797470;
  }
  
  .status-cancelled {
    color: #797470;
  }
  
  .status-pending {
    color: #FFD139;
  }
  
  .received-cell {
    display: flex;
    align-items: center;
    gap: 6px;
  }




  .transactions-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
    /* margin-left: 10px; */
}


.transactions-header {
    display: flex;
    height: 16px;
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: 600;
    /* font-size: 16px!important; */
    /* line-height: 16px; */
    letter-spacing: .02em;
    flex: none;
    order: 0;
    flex-grow: 1;
    margin-top: 5px;
    margin-bottom: 10px;
}

.cell-date {width: 16%;margin-left: 16px;}

.cell-type {
width: 16%;
}
.cell-amount {
width: 10%;
}
.cell-server {
width: 19%;
}
.cell-received {
width: 20%;
}
.cell-status {
    justify-content: right !important;
              flex-direction: row;
width: 17%;
    margin-right: 16px;
}

.transactions-cell.cell-received {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 0;
    gap: 10px;
    flex: none;
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .02em;
    color: #bab3ade6;
}

.cell-status, .cell-receive, .cell-server, .cell-amount, .cell-type, .cell-date {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 0;
    gap: 10px;
    flex: none;
    font-family: Roboto Condensed;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .02em;
    color: #bab3ade6;
}

.transaction-row {
    box-sizing: border-box;
    padding: 16px 0px;
    height: 60px;
    background: rgba(43, 41, 41, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 1px;
    margin-top: 5px;
}


img.received-img {
    width: 40px;
    margin-right: 10px;
}

.received-purchase {
    display: flex;
    align-content: center;
    align-items: center;
}


.received-sum {
    color: white;
}

.received-purchase-test {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@keyframes blink {
    0% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

.status-indicator svg rect:first-child {
    animation: blink 2s infinite
}

span.received-name {
    color: #FFD139;
}

.transaction-row .transactions-cell.cell-amount {
    color: #fff;
}

.transaction-row:hover {
    border: 1px solid rgb(255 255 255 / 19%);
    cursor: pointer;
}

.no-transaction-msg-first {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    margin: 5px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(186, 179, 173, 0.9);
    }
    
    .no-transaction-msg-second {
    margin-top: 5px;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(121, 116, 112, 0.9);
    }