.background-container {
  width: 100%;
  max-width: 600px;
  background-color: #21bf6b;
  /* พื้นหลังภายใน */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  /* สีเขียว */
  margin-bottom: 20px;
}

/* Table Styling */
.table-container {
  width: 100%;
  display: grid;
  gap: 8px;
  /* ระยะห่างระหว่างแถว */
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr 1.5fr;
  /* ปรับขนาดคอลัมน์ */
  align-items: center;
  padding: 10px 5px;
  border-radius: 8px;
  background-color: #161616;
  transition: background-color 0.3s;
}

.table-header {
  background-color: #0f0f0f;
  font-weight: bold;
  color: #fff100;
  /* สีเขียว */
}

.table-row:nth-child(even) {
  background-color: #222222;
}

.table-row:hover {
  background-color: #0f3d26;
}

.bank-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bank-logo {
  width: 35px;
  height: 35px;
}

.bank-name {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.user-id,
.date,
.amount {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.amount {
  font-weight: bold;
  color: #00ff6e;
  /* สีเขียว */
}
