.job-loader-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}

.job-loader-card{
    background:#ffffff;
    border-radius:12px;
    padding:40px 50px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    max-width:420px;
}

.job-loader-card h4{
    margin-top:20px;
    font-weight:600;
    color:#222;
}

.job-loader-card p{
    color:#777;
    margin-top:8px;
    font-size:14px;
}

/* Animated spinner */
.spinner{
    width:60px;
    height:60px;
    border:5px solid #eee;
    border-top:5px solid #ff6600;   /* brand color */
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:0 auto;
}

@keyframes spin{
    0%{ transform:rotate(0deg); }
    100%{ transform:rotate(360deg); }
}

.job-head{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.job-icon{
    width:50px;
    height:auto;
    margin-right:15px;
}

.job-meta{
    font-size:13px;
    color:#777;
    line-height:1.5;
}

.job-meta strong{
    color:#444;
    font-weight:600;
}

/*** Job Modal design ***/

.job-modal{
    border-radius:12px;
    overflow:hidden;
}

/* Header */
.job-modal-header{
    padding:20px 25px;
    border-bottom:1px solid #eee;
    background:#f8f9fa;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.job-modal-header h4{
    margin:0;
    font-weight:600;
}

.job-modal-header span{
    font-size:13px;
    color:#777;
}

/* Body layout */
.job-modal-body{
    display:flex;
    height:60vh;
}

/* Left panel */
.job-left{
    width:35%;
    padding:25px;
    background:#ffffff;
    overflow-y:auto;
    border-right:1px solid #eee;
}

.job-info{
    margin-bottom:15px;
}

.job-info label{
    font-size:14px;
    color:#888;
    display:block;
}

.job-right .job-desc{
    font-size:15px;
    color:#888;
    display:block;
    font-weight: bold;
}

.job-info div{
    font-size:15px;
    font-weight:500;
    color:#222;
}

/* Right panel */
.job-right{
    width:65%;
    padding:25px;
    background:#f9fafb;
    display:flex;
    flex-direction:column;
}

.job-desc-scroll{
    overflow-y:auto;
    padding-right:10px;
    margin-top:10px;
    line-height:1.7;
    flex:1;
}

/* Footer */
.job-modal-footer{
    padding:15px 25px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    background:#fff;
}

/* Mobile */
@media(max-width:768px){
    .job-modal-body{
        flex-direction:column;
        height:auto;
    }

    .job-left, .job-right{
        width:100%;
        max-height:40vh;
    }

    .job-modal-footer{
        position:sticky;
        bottom:0;
    }
}


/*** END ***/