/* ==========================================
   Candidate Dashboard Sidebar
========================================== */

.udj-sidebar{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* Cover */
.udj-sidebar-cover{
    height:110px;
    background:linear-gradient(135deg,#1d3665,#3d5a98);
}

/* Profile Image */
.udj-sidebar-photo{
    text-align:center;
    margin-top:-55px;
}

.udj-sidebar-photo img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    background:#fff;
}

/* Name */
.udj-sidebar h2{
    margin:15px 0 5px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:#1d3665;
}

/* Email */
.udj-sidebar p{
    text-align:center;
    color:#6b7280;
    font-size:14px;
    margin-bottom:25px;
}

/* Divider */
.udj-sidebar hr{
    border:none;
    border-top:1px solid #ececec;
    margin:0;
}

/* Menu */
.udj-sidebar-menu{
    list-style:none;
    padding:20px;
    margin:0;
}

.udj-sidebar-menu li{
    margin-bottom:10px;
}

.udj-sidebar-menu li:last-child{
    margin-bottom:0;
}

.udj-sidebar-menu li a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    text-decoration:none;
    color:#374151;
    font-size:15px;
    font-weight:500;
    border-radius:8px;
    transition:.3s;
}

.udj-sidebar-menu li a:hover{
    background:#eef5ff;
    color:#1d3665;
}

/* Active Menu */
.udj-sidebar-menu li.active a{
    background:#1d3665;
    color:#ffffff;
}

/* Logout */
.udj-sidebar-menu li a.logout{
    color:#dc2626;
}

.udj-sidebar-menu li a.logout:hover{
    background:#fee2e2;
    color:#b91c1c;
}

/* Responsive */
@media(max-width:768px){

    .udj-sidebar{
        margin-bottom:25px;
    }

}
/* ==========================================
   UniDeltaJobs - Applied Jobs Table
========================================== */

.udj-table-wrapper{
    width:100%;
    height:400px;
    overflow-x:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
}

.udj-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

.udj-table thead{
    background:#1d3665;
}

.udj-table thead th{
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:18px;
    text-align:left;
    white-space:nowrap;
}

.udj-table tbody td{
    padding:18px;
    border: none !important;
    color:#444;
    font-size:14px;
    vertical-align:middle;
}

.udj-table tbody tr{
    transition:.25s;
}

.udj-table tbody tr:hover{
    background:#e6f9ff;
}

/* Remove all table borders */
.udj-table,
.udj-table thead,
.udj-table tbody,
.udj-table tr,
.udj-table th,
.udj-table td {
    border: none !important;
}

/* Job Title */

.udj-table strong{
    color:#1d3665;
    font-size:15px;
    font-weight:600;
}

/* Status Badge */

.udj-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.udj-status-applied{
    background:#e8f7ee;
    color:#169b4a;
}

.udj-status-review{
    background:#fff6dd;
    color:#b88600;
}

.udj-status-shortlisted{
    background:#e9f1ff;
    color:#2563eb;
}

.udj-status-interview{
    background:#f3e8ff;
    color:#7c3aed;
}

.udj-status-rejected{
    background:#fdeaea;
    color:#dc2626;
}

.udj-status-hired{
    background:#e6ffed;
    color:#15803d;
}

/* Button */

.udj-btn-view{
    display:inline-block;
    padding:8px 18px;
    background:#1d3665;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.25s;
}

.udj-btn-view:hover{
    background:#a9248e;
    color:#fff;
}
@media (max-width:768px){

    .udj-table{
        min-width:900px;
    }

}