/* Styles for the Modal */
#claimJobModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#claimJobModal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    margin: auto;
    text-align: center;
}

#claimJobModal button {
    margin: 10px;
}


