.customer-dashboard{

display:flex;
flex-direction:column;
gap:25px;

}

.dashboard-hero{

display:flex;
justify-content:space-between;
align-items:center;

padding:30px;

border-radius:20px;

background:linear-gradient(135deg,#0F766E,#14B8A6);

color:#fff;

}

.hero-left{

display:flex;
align-items:center;
gap:20px;

}

.avatar{

width:80px;
height:80px;

border-radius:50%;

overflow:hidden;

border:4px solid rgba(255,255,255,.3);

}

.avatar img{

width:100%;
height:100%;
object-fit:cover;

}

.wallet-card{

text-align:right;

}

.wallet-card h1{

margin:0;
font-size:34px;

}

.active-page{

background:#fff;

padding:25px;

border-radius:18px;

box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.page-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.progress{

height:12px;

background:#eee;

border-radius:20px;

overflow:hidden;

}

.progress-fill{

height:100%;

background:#10B981;

}

.progress-text{

margin-top:10px;

color:#666;

}

.action-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:15px;

}

.action{

padding:18px;

border-radius:18px;

background:#fff;

text-align:center;

text-decoration:none;

color:#111;

box-shadow:0 8px 20px rgba(0,0,0,.05);

font-weight:600;

}

.action.primary{

background:#0F766E;

color:#fff;

}

.action i{

display:block;

margin:auto auto 10px;

width:28px;
height:28px;

}

.stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:15px;

}

.stats div{

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.stats small{

display:block;

color:#666;

margin-bottom:8px;

}

.stats strong{

font-size:24px;

}

.chart-placeholder{

height:280px;

border:2px dashed #d9d9d9;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

color:#999;

font-size:18px;

}

.continue-btn{

background:#0F766E;

color:#fff;

padding:10px 18px;

border-radius:10px;

text-decoration:none;

font-weight:600;

}

@media(max-width:768px){

.dashboard-hero{

flex-direction:column;
align-items:flex-start;
gap:20px;

}

.wallet-card{

text-align:left;

}

.action-grid{

grid-template-columns:repeat(2,1fr);

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}