:root{
  --blue:#0b2a6f;
  --red:#b91c1c;
  --soft:#f4f7fb;
}

.giving-container{
  max-width:420px;
  margin:auto;
  font-family:Arial;
}

.form-card,.result-card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

h2{
  text-align:center;
  color:var(--blue);
}

label{
  display:block;
  margin-top:12px;
  font-weight:600;
}

select,input{
  width:100%;
  padding:11px;
  margin-top:6px;
  border-radius:8px;
  border:1px solid #e5e7eb;
}

.red-btn{
  width:100%;
  padding:12px;
  margin-top:18px;
  background:var(--red);
  color:white;
  border:none;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}

.result-card{
  display:none;
  margin-top:20px;
  text-align:center;
}

.back-btn{
  background:none;
  border:none;
  color:var(--blue);
  font-weight:bold;
  cursor:pointer;
  margin-bottom:10px;
}

.account-box{
  background:var(--soft);
  padding:15px;
  border-radius:10px;
  margin:15px 0;
  text-align:left;
}

.bank-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.bank-row img{
  width:40px;
  height:40px;
  border-radius:8px;
}

.acc-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  padding:10px;
  border-radius:8px;
  margin-top:10px;
}

.acc-number{
  font-weight:bold;
}

.copy-btn{
  background:var(--blue);
  color:white;
  border:none;
  padding:6px 10px;
  border-radius:6px;
  cursor:pointer;
  font-size:12px;
}

.copy-btn.copied{
  background:green;
}

.done-btn{
  display:inline-block;
  margin-top:8px;
  padding:12px 20px;
  background:var(--red);
  color:white;
  text-decoration:none;
  border-radius:8px;
}

.narration-box{
  margin-top:12px;
}