/* style for user products */
#addJobContainer {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    max-height: 500px;
    max-width: 800px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow-y: auto;
}

/* Additional styling for responsiveness */

.feedBack_container {
    display: block;
    position: fixed;
    top: 40%;
    left: 50%;
    max-height: 500px;
    max-width: 800px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow-y: auto;
}

@media screen and (max-width: 768px) {
    #addJobContainer {
        width: 95%;
        overflow-y: auto;
    }

    .feedBack_container {
        width: 95%;
        overflow-y: auto;
    }
}
