/* .transaction-container {
  margin: 0;
  padding: 0 20px 20px 20px; 
  background-color: #f9f9f9;
  min-height: 100vh;
  margin-left: 240px;
  box-sizing: border-box;
  width: calc(100% - 240px);
}


.transaction-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 20px 0;
  color: #222;
  border-bottom: 2px solid #007bff;
}


.table-responsive {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.transaction-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.transaction-table thead {
  background-color: #007bff;
  color: #fff;
}

.transaction-table th,
.transaction-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.transaction-table tbody tr:hover {
  background-color: #f2f2f2;
}


.status.success {
  color: green;
  font-weight: bold;
}
.status.failed {
  color: red;
  font-weight: bold;
}
.status.pending {
  color: orange;
  font-weight: bold;
}


@media (max-width: 768px) {
  .transaction-container {
    margin-left: 0;
    padding: 10px;
    width: 100%;
  }

  .transaction-title {
    text-align: center;
    font-size: 20px;
  }

  .transaction-table th,
  .transaction-table td {
    padding: 10px;
    font-size: 13px;
  }

  .transaction-table {
    min-width: 700px;
  }
} */

.transaction-container {
  margin-top: 20px;
  padding: 10px;
}

.transaction-card {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.transaction-header {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transaction-body {
  padding: 15px;
}

.table-wrapper {
  overflow-x: auto;
}

.transaction-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.transaction-table th,
.transaction-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.transaction-table th {
  background-color: #f1f1f1;
  font-weight: bold;
}

.green-text {
  color: green;
  font-weight: bold;
}

.red-text {
  color: red;
  font-weight: bold;
}

.pagination-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pagination-controls button {
  background-color: #007bff;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .transaction-container {
    padding: 5px;
  }

  .transaction-header h4 {
    font-size: 18px;
  }

  .transaction-table th,
  .transaction-table td {
    font-size: 14px;
    padding: 8px;
  }
}