.withdraw-list-page {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 40px;
}

.txl-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.txl-summary-card {
  border: 1px solid #eef0f4;
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(28, 35, 52, 0.05);
}

.txl-summary-card .val {
  color: #d93028;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.txl-summary-card .val.orange {
  color: #d98516;
}

.txl-summary-card .val.green {
  color: #23a455;
}

.txl-summary-card .lbl {
  margin-top: 10px;
  color: #69717d;
  font-size: 13px;
}

.txl-card {
  border: 1px solid #eef0f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 35, 52, 0.06);
  overflow: hidden;
}

.txl-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f2f6;
}

.txl-card-title {
  color: #1f2633;
  font-size: 18px;
  font-weight: 800;
}

.txl-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.txl-select {
  height: 38px;
  border: 1px solid #dfe3ea;
  border-radius: 6px;
  background: #fff;
  padding: 0 10px;
  color: #303846;
}

.txl-back {
  height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  background: #fff4f2;
  color: #d93028;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.txl-table-wrap {
  overflow-x: auto;
}

.txl-table {
  width: 100%;
  border-collapse: collapse;
}

.txl-table th {
  background: #fbfcff;
  color: #5f6875;
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #edf0f5;
  white-space: nowrap;
}

.txl-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f3f7;
  color: #303846;
  white-space: nowrap;
}

.txl-table tbody tr:hover {
  background: #fffaf9;
}

.txl-status {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
}

.txl-status-pending {
  color: #b46b00;
  background: rgba(217, 133, 22, 0.12);
}

.txl-status-success {
  color: #168143;
  background: rgba(35, 164, 85, 0.12);
}

.txl-status-failed {
  color: #c33028;
  background: rgba(217, 48, 40, 0.12);
}

.txl-status-normal {
  color: #6f625b;
  background: rgba(111, 98, 91, 0.12);
}

.txl-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #d93028;
  border-radius: 6px;
  background: #fff;
  color: #d93028;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.txl-delete-button:hover {
  background: #d93028;
  color: #fff;
}

.txl-action-empty {
  color: #b8bec8;
}

.txl-pagination {
  padding: 14px 22px 20px;
  text-align: center;
}

@media (max-width: 760px) {
  .txl-summary {
    grid-template-columns: 1fr;
  }

  .txl-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
