.job-list {
    list-style: none;
    padding-left: 0;
}
.job-item {
    padding: 10px;
    margin-bottom: 8px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    cursor: pointer;
}
.job-item:hover {
    background: #eef5ff;
}
.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.job-subject {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}
.job-deadline {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .job-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-deadline {
        font-size: 13px;
    }
}
#job-popup {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 4px 16px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    font-family: 'Arial', sans-serif;
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#job-popup .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #000;
    opacity: .5;
    border: none;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
#job-popup .close-btn:hover {
    opacity: .75;
}
#job-popup h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
#job-popup p {
    margin: 0;
    font-size: 15px;
    color: #666;
}
#job-popup p.description {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}
