        .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.popup.active {
    display: block;
}

.popup-content {
    background-color: white;
    margin: 1% auto;
    padding: 20px;
    width: 96%;

    border-radius: 8px;
    position: relative;
}

.popup-body {
    max-height: 95vh;
    overflow-y: none;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-active {
    overflow: hidden;
}


.popup-job-list {
    background: white;
    border-radius: 8px;

    align-items: center;


    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-popup-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.popup-body {
    padding: 20px;
}