/* SECTION */
.latest-section {
  padding: 100px 20px;
  background: #050507;
  color: #fff;
}

.latest-header {
  text-align: center;
  margin-bottom: 50px;
}

.latest-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.latest-header span {
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  -webkit-background-clip: text;
  color: transparent;
}

.latest-header p {
  margin-top: 10px;
  color: #9a9ab0;
}

/* TABLE WRAPPER */
.latest-table-wrap {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(180deg, #0d0d12, #09090d);
  border-radius: 18px;
  border: 1px solid rgba(186, 107, 255, 0.15);
  padding: 10px 0;
}

/* TABLE */
.latest-table {
  width: 100%;
  border-collapse: collapse;
}

.latest-table th,
.latest-table td {
  padding: 18px 22px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.latest-table th {
  color: #9a9ab0;
  font-weight: 500;
  text-align: left;
}

.latest-table tr:last-child td {
  border-bottom: none;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b86bff, #ff4fd8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* AMOUNT */
.amount {
  color: #43f29d;
  font-weight: 600;
}

/* TX */
.tx {
  color: #b86bff;
  font-size: 13px;
  cursor: pointer;
}

/* TIME */
.time {
  color: #9a9ab0;
  font-size: 13px;
}

/* HOVER */
.latest-table tbody tr:hover {
  background: rgba(186, 107, 255, 0.04);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .latest-table th:nth-child(3),
  .latest-table td:nth-child(3) {
    display: none;
  }
}
