.rekening-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: auto;
  padding: 1rem;
}

.rekening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.rekening-card:hover {
  transform: scale(1.01);
}

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

.bank-logo {
  width: 48px;
  height: 40px;
  border-radius: 7px !important;
  object-fit: contain;
  background: #f2f2f2;
  padding: 0;
}

.bank-detail {
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.rekening-nomor {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.rekening-nama {
  font-size: 10px;
  color: #888;
}

.copy-button {
  background-color: #032952;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 13px;
  cursor: pointer;
  font-size: 11px;
  transition: background 0.3s ease;
}

.copy-button:hover {
  background-color: #0056b3;
}

.alamat-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 480px;
  margin: 10px 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: sans-serif;
}

.alamat-info {
  font-size: 13px;
  color: #000;
  line-height: 1.7;
}

.alamat-btn-group {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 1rem;
}

.alamat-btn-group button,
.alamat-btn-group a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-copy {
  background-color: #032952;
  color: white;
}

.btn-copy:hover {
  background-color: #0056b3;
}

.btn-wa {
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-wa:hover {
  background-color: #1da851;
}

.btn-wa svg {
  width: 16px;
  height: 16px;
}