
:root {
  --primary-bg: #fee101;
  --accent-color: #0097b2;
  --interaction-color: #d80000;
  --primary-bg-light: #fff4c2;
  --primary-bg-lighter: #fff8db;
  --text-color: #333;
  --white: #ffffff;
}

.donate-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  gap: 2px;
  flex-wrap: wrap;
  margin: 20px auto;
  box-sizing: border-box;
}

.bank-details {
  display: flex;
  flex: 1 1 300px;
  min-width: 200px;
  justify-content: flex-start;
}

.bank-details table {
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}

.bank-details td {
  max-width: fit-content;
}

.bank-details th,
.bank-details td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.donate-qr {
  flex: 0 0 220px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #333;
}

.donate-qr img {
  width: 700px;
  height: auto;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .donate-body {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin: 5px;
  }
  .donate-qr {
    align-self: center;
    margin-top: 1px;
  }
}
