/* ===================================
   STUDENT PROFILE
=================================== */

.dpp-profile-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.dpp-profile-top{
    text-align:center;
    margin-bottom:30px;
}

.dpp-profile-top img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.dpp-profile-top h2{
    font-size:28px;
}

.dpp-info-row{
    margin-bottom:18px;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    padding-bottom:12px;
}

/* ===================================
   NOTIFICATIONS
=================================== */

.dpp-notification-card{
    background:#fff;
    padding:20px;
    border-radius:14px;
    margin-bottom:15px;
    border-left:5px solid #10b981;
}

/* =========================================
   STUDENT DASHBOARD UI
========================================= */

.dpp-dashboard-wrapper{
    padding:40px;
    background:#f4f7fb;
    min-height:100vh;
    font-family:Arial, sans-serif;
    width:100%;
    max-width:1400px;
}

/* =========================================
   HEADER
========================================= */

.dpp-dashboard-header{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    padding:40px;
    border-radius:24px;
    color:#fff;
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(37,99,235,0.25);
}

.dpp-dashboard-header::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.dpp-dashboard-header h2{
    margin:0;
    font-size:38px;
    font-weight:700;
}

.dpp-dashboard-header p{
    margin-top:10px;
    font-size:17px;
    opacity:0.95;
}

/* =========================================
   STATS
========================================= */

.dpp-dashboard-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:40px;
}

/* CARD */

.dpp-stat-card{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    position:relative;
    overflow:hidden;
    transition:0.35s;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #edf2f7;
}

.dpp-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}

.dpp-stat-card::after{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(37,99,235,0.06);
    border-radius:50%;
    top:-30px;
    right:-30px;
}

.dpp-stat-card h3{
    margin:0 0 15px;
    color:#6b7280;
    font-size:16px;
    font-weight:600;
}

.dpp-stat-card span{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

/* =========================================
   JOB SECTION
========================================= */

.dpp-dashboard-jobs{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.dpp-dashboard-jobs h3{
    margin:0 0 30px;
    font-size:28px;
    color:#111827;
}

/* =========================================
   JOB CARD
========================================= */

.dpp-job-card{
    display:block;
    gap:20px;
    background:#f9fbff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px;
    margin-bottom:20px;
    transition:0.3s;
}

.dpp-job-card:hover{
    transform:translateY(-4px);
    border-color:#2563eb;
    box-shadow:0 10px 30px rgba(37,99,235,0.10);
}

.dpp-job-card h4{
    margin:0 0 10px;
    font-size:22px;
    color:#111827;
}

.dpp-job-card p{
    margin:6px 0;
    color:#6b7280;
    font-size:15px;
}

/* VIEW BUTTON */

.dpp-job-card a{
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
    white-space:nowrap;
}

.dpp-job-card a:hover{
    background:#1d4ed8;
    transform:scale(1.04);
}

/* =========================================
   EMPTY TEXT
========================================= */

.dpp-dashboard-jobs p{
    font-size:15px;
    color:#6b7280;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1024px){

    .dpp-dashboard-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .dpp-dashboard-wrapper{
        padding:20px;
        width:100%;
        max-width: auto;
    }

    .dpp-dashboard-header{
        padding:30px 25px;
    }

    .dpp-dashboard-header h2{
        font-size:28px;
    }

    .dpp-dashboard-stats{
        grid-template-columns:1fr;
    }

    .dpp-job-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .dpp-job-card a{
        width:100%;
        text-align:center;
    }

}