/* dashboard background */

.app-dashboard{
background:var(--dark);
min-height:100vh;
color:var(--white);
font-family:"DM Sans",sans-serif;
}


/* cards */

.dash-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(56,240,128,.08);
border-radius:10px;
padding:22px;
backdrop-filter:blur(10px);
}


.welcome-card h4{
font-weight:600;
}

.muted{
color:var(--muted);
}

/* progress */

.progress{
height:10px;
background:rgba(255,255,255,.05);
border-radius:20px;
overflow:hidden;
margin-top:10px;
}

.progress-bar{
height:100%;
width:75%;
background:var(--accent);
}

/* stat cards */

.stat-card h6{
color:var(--muted);
font-size:13px;
margin-bottom:6px;
}

.status-badge{
padding:6px 12px;
border-radius:6px;
font-size:13px;
display:inline-block;
}

.pending{
background:rgba(201,160,32,.12);
color:var(--gold);
}

.stage,.date{
font-weight:500;
}


/* progress tracker */

/* progress tracker container */

.progress-tracker{
position:relative;
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-top:20px;
}


/* connecting line */

.progress-line{
position:absolute;
top:18px;
left:10%;
right:10%;
height:3px;
background:rgba(255,255,255,.1);
z-index:1;
}


/* active progress */

.progress-fill{
height:100%;
width:60%;
background:var(--accent);
transition:width .4s ease;
}


/* steps */

.step{
position:relative;
z-index:2;
text-align:center;
flex:1;
cursor: pointer;
}

.circle{
width:36px;
height:36px;
border-radius:50%;
border:2px solid rgba(255,255,255,.2);
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:8px;
font-weight:600;
background:var(--dark);
}


/* completed */

.step.completed .circle{
background:var(--accent);
color:var(--dark);
border:none;
}


/* active */

.step.active .circle{
border-color:var(--accent);
}


/* label */

.step p{
font-size:12px;
color:var(--muted);
margin:0;
}


/* MOBILE VERSION */

@media (max-width:768px){

.progress-tracker{
flex-direction:column;
gap:25px;
}

.progress-line{
left:25px;
top:0;
width:3px;
height:100%;
}

.progress-fill{
width:100%;
height:100%;
}

.step{
display:flex;
align-items:center;
gap:12px;
text-align:left;
cursor: pointer;
}

.circle{
margin:0;
}

.step p{
font-size:13px;
}

}

.step span{
width:36px;
height:36px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
border:2px solid rgba(255,255,255,.2);
margin:auto;
margin-bottom:6px;
font-weight:600;
}

.step p{
font-size:12px;
color:var(--muted);
}

.step.completed span{
background:var(--accent);
color:var(--dark);
border:none;
}

.step.active span{
border-color:var(--accent);
}


/* summary */

.summary-list{
list-style:none;
padding:0;
margin-bottom:20px;
}

.summary-list li{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid rgba(255,255,255,.05);
font-size:14px;
}


/* button */

.btn-action{
background:var(--accent);
border:none;
padding:10px 18px;
border-radius:6px;
font-weight:600;
color:var(--dark);
cursor:pointer;
transition:.2s;
}

.btn-action:hover{
background:#2bd96f;
}


/* updates */

.update-item{
display:flex;
gap:10px;
margin-bottom:16px;
}

.update-dot{
width:8px;
height:8px;
background:var(--accent);
border-radius:50%;
margin-top:6px;
}

.update-item p{
margin:0;
font-size:13px;
}

.update-item small{
color:var(--muted);
font-size:11px;
}


/* empty state */

.no-application{
padding:60px 30px;
width:100%;
margin:auto;
}


/* icon */

.no-app-icon{
width:90px;
height:90px;
margin:auto;
margin-bottom:20px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(56,240,128,.08);
border-radius:50%;
color:var(--accent);
border:1px solid rgba(56,240,128,.2);
}


/* title */

.no-application h5{
font-weight:600;
margin-bottom:10px;
}


/* description */

.no-application p{
font-size:14px;
max-width:420px;
margin:auto;
margin-bottom:22px;
}


/* button */

.btn-start-app{
background:var(--accent);
border:none;
padding:10px 20px;
border-radius:6px;
font-weight:600;
color:var(--dark);
cursor:pointer;
transition:.25s;
}

.btn-start-app:hover{
background:#2ddc72;
transform:translateY(-1px);
box-shadow:0 6px 14px rgba(56,240,128,.25);
}
