/* DASHBOARD CONTAINER */

.dashboard-box{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 6px 25px rgba(0,0,0,0.08);
margin-top:40px;
margin-bottom:40px;
}


/* TITLE */

.dash-title{
text-align:center;
font-size:28px;
margin-bottom:10px;
color:#333;
}

.dash-sub{
text-align:center;
color:#666;
margin-bottom:35px;
}


/* GRID */

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}


/* CARD */

.dash-card{
background:#fff5f7;
padding:25px;
border-radius:12px;
text-decoration:none;
color:#333;
transition:0.3s;
border:1px solid #ffe0e6;
}

.dash-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.1);
background:white;
}


/* ICON */

.icon{
font-size:28px;
color:#ff5c77;
margin-bottom:10px;
}


/* CARD TITLE */

.dash-card h3{
margin-bottom:8px;
font-size:18px;
color:#ff5c77;
}


/* CARD TEXT */

.dash-card p{
font-size:14px;
color:#555;
line-height:1.5;
}


/* HEALTH TIP */

.health-tip{
margin-top:35px;
background:#fff0f3;
padding:20px;
border-radius:10px;
border:1px solid #ffd6df;
}

.health-tip h3{
margin-bottom:8px;
color:#ff5c77;
}


/* MOBILE */

@media(max-width:768px){

.dashboard-grid{
grid-template-columns:1fr;
}

.dashboard-box{
padding:25px;
}

}