.devx-dashboard{
    max-width:1200px;
    margin:30px auto;
    font-family:Arial,sans-serif;
}

.devx-header{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    padding:30px;
    border-radius:15px;
    margin-bottom:25px;
}

.devx-header h2{
    margin:0;
}

.devx-header p{
    margin:8px 0 0;
}

.devx-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;
    margin-top:20px;
}

.devx-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    text-decoration:none;
    color:#333;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.devx-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.devx-icon{
    font-size:42px;
    margin-bottom:12px;
}

.devx-box{
    background:#fff;
    margin-top:25px;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.devx-box h3{
    margin-top:0;
}