body{
    background:#f5f7fb;
    font-family:'Segoe UI',sans-serif;
}

.main-content{
    margin-left:280px;
    margin-top:70px;
    padding:25px;
}

.card{
    border:none;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.card-header{
    background:#fff;
    border-bottom:1px solid #eee;
}

@media(max-width:991px){

.main-content{

margin-left:0;

}

}

.stat-card{

border-radius:18px;

background:#fff;

padding:25px;

box-shadow:0 5px 18px rgba(0,0,0,.06);

transition:.3s;

height:100%;

}

.stat-card:hover{

transform:translateY(-5px);

}

.stat-icon{

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

}

.bg-blue{

background:#2563eb;

}

.bg-green{

background:#16a34a;

}

.bg-orange{

background:#f59e0b;

}

.bg-red{

background:#ef4444;

}

.bg-purple{

background:#7c3aed;

}

.bg-cyan{

background:#06b6d4;

}

.stat-title{

font-size:14px;

color:#6b7280;

margin-bottom:5px;

}

.stat-value{

font-size:32px;

font-weight:700;

color:#111827;

}

.dashboard-widget{

background:#fff;

border-radius:18px;

box-shadow:0 5px 18px rgba(0,0,0,.06);

overflow:hidden;

}

.dashboard-widget .card-header{

background:#fff;

padding:18px 22px;

font-weight:600;

}

.progress{

height:8px;

border-radius:20px;

}

.table td{

vertical-align:middle;

}

.client-item{
    display:flex;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #f1f5f9;
    transition:.3s;
}

.client-item:hover{
    background:#f8fafc;
}

.client-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    margin-right:15px;
    flex-shrink:0;
}

.client-info h6{
    margin:0;
    font-size:15px;
    font-weight:600;
}

.client-info small{
    color:#6b7280;
}

.client-status{
    margin-left:auto;
}

.task-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px;
    border-bottom:1px solid #eef2f7;
}

.task-item:last-child{
    border-bottom:none;
}

.task-left{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.task-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#eef4ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.task-title{
    font-weight:600;
    margin-bottom:3px;
}

.task-project{
    font-size:12px;
    color:#6b7280;
}