/* ==========================================================================
   JADEED STUDENT DASHBOARD - FRONTEND UI
   ========================================================================== */

#js-profile-root {
    padding: 50px 20px;
    background-color: #FFF9E6; /* Same Cream Bleed */
    min-height: 500px;
    font-family: 'Inter', sans-serif;
}

.js-profile-card {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #EAEAEA;
    padding: 40px;
}

/* Header */
.jsp-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 30px;
}

.jsp-avatar-wrap img {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    object-fit: cover;
    border: 4px solid #FF6B35;
}

.jsp-name-wrap h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    margin: 0 0 10px 0;
    color: #111;
}

/* Status Pill */
.jsp-status-pill {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.st-approved { background: #E6FFFA; color: #047857; }
.st-pending { background: #FFF4E5; color: #B45309; }
.st-rejected { background: #FFF5F5; color: #C53030; }

/* Info Grid */
.jsp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.jsp-info-item label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.jsp-info-item p {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* Admin Notes Box */
.jsp-notes-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.jsp-notes-box {
    background: #F9F9F9;
    padding: 25px;
    border-radius: 20px;
    border-left: 5px solid #FF6B35;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.jsp-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #BBB;
}

@media (max-width: 600px) {
    .jsp-header { flex-direction: column; text-align: center; }
    .jsp-info-grid { grid-template-columns: 1fr; }
}