* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f5f7fa;
  color: #111;
}

.header {
  padding: 30px 25px;
}

.stripe-logo {
  height: 90px;
  cursor: pointer;
}

.container {
  max-width: 720px;
  margin: auto;
  padding: 20px;
}

.page-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.portal-btn {
  background: #1856a8;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 30px;
}

.portal-btn:hover {
  opacity: 0.9;
}

.chart-wrapper {
  margin-bottom: 40px;
}

.chart-img {
  width: 100%;
  border-radius: 12px;
}

.transaction-section {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.transaction-section h3 {
  margin-bottom: 15px;
}

.sub-text {
  color: #666;
  margin-bottom: 15px;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-name {
  font-weight: 600;
}

.amount {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.transfer {
  margin: 15px 0;
  color: #666;
}

.display-key {
  color: #1856a8;
  cursor: pointer;
  margin-bottom: 15px;
}

.qr-wrapper {
  text-align: center;
  margin: 20px 0;
}

.black-qr {
  width: 120px;
}

.withdrawal-box {
  background: #f3f4f6;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #666;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .stripe-logo {
    height: 70px;
  }
}
.processing-container{
text-align:center;
margin-top:40px;
}

.progress-circle{
position:relative;
width:180px;
height:180px;
margin:auto;
}

.progress-circle svg{
transform:rotate(-90deg);
}

.progress-circle circle{
fill:none;
stroke-width:10;
}

.progress-circle .bg{
stroke:#e6e6e6;
}

.progress-circle .progress{
stroke:#1856a8;
stroke-linecap:round;
stroke-dasharray:502;
stroke-dashoffset:75;
animation:progressAnim 2s ease forwards;
}

@keyframes progressAnim{
from{
stroke-dashoffset:502;
}
to{
stroke-dashoffset:75;
}
}

.percentage{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:42px;
font-weight:600;
color:#000;
}

.processing-text{
margin-top:20px;
font-size:18px;
color:#666;
}

.withdrawal-box{
margin-top:25px;
background:#f2f2f2;
padding:14px;
border-radius:10px;
font-size:16px;
}