* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.job-box-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    justify-content: flex-start;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.job-box {
    background-color: #80808054;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.job-title {
    margin: 0px 0px 15px;
}

.job-experience,
.job-location {
    margin-bottom: 5px;
}

.read-more {
    font-weight: 600;
}

.job-details {
    background-color: #f9bebe;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.job-success {
    color: green;
    font-weight: 500;
    line-height: normal;
}

.apply-job-form input,
.frontend-job-form :is(input, select, textarea) {
    border: 1px solid #F81927 !important;
    border-radius: 8px !important;
}

.apply-job-form input[type="file"] {
    border: none !important;
    border-radius: 0 !important;
}

.apply-job-form input:focus-visible,
.frontend-job-form :is(input, select, textarea):focus-visible {
    outline: none !important;
}

.apply-job-form button,
.frontend-job-form button {
    border: 1px solid #F81927;
    color: #F81927;
    border-radius: 8px;
}

.apply-job-form button:hover,
.frontend-job-form button:hover {
    background-color: #F81927;
    color: #fff;
}

.form-field {
    margin-bottom: 16px;
}

.frontend-job-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.date-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.frontend-job-form .job-success {
    margin-top: 5px;
}

.my-jobs-table td {
    line-height: normal !important;
    vertical-align: middle;
}

table.my-jobs-table tbody>tr:nth-child(odd)>td,
table.my-jobs-table tbody>tr:nth-child(odd)>th {
    background-color: #f9bebe !important;
}

table.my-jobs-table td,
table.my-jobs-table th {
    border: 1px solid #F81927;
    color: #000;
    text-align: center;
}

table.my-jobs-table thead:first-child tr:first-child th {
    border-block-start: 1px solid #F81927;
    font-size: 16px;
}

.my-jobs-table tr td a {
    color: #c1030f;
    font-weight: 500;
}

table.my-jobs-table tbody tr:hover>td,
table.my-jobs-table tbody tr:hover>th {
    background-color: #f9bebe63;
}

@media screen and (max-width:1024px) {
    .job-box-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width:768px) {
    .job-box-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:575px) {
    .job-details {
        padding: 16px;
    }

    .job-box-container,
    .date-wrap {
        display: grid;
        grid-template-columns: 1fr;
    }

    table.my-jobs-table thead:first-child tr:first-child th {
        font-size: 14px;
    }

    table.my-jobs-table td,
    table.my-jobs-table th {
        padding: 10px;
        font-size: 12px;
    }
}