.dashboard-stat-card{
    background:white;
    border-radius:25px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.stat-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.quick-action-card{
    background:#f8f9fa;
    border-radius:20px;
    padding:30px;
    display:block;
    text-decoration:none;
    color:#333;
    transition:0.3s;
    height:100%;
}

.quick-action-card:hover{
    transform:translateY(-5px);
    background:white;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
    color:#333;
}

.quick-icon{
    width:70px;
    height:70px;
    background:#e8f1ff;
    color:#0d6efd;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}