.job .jobs-header {
    border-radius: 4px;
    background-color: #FFC4D3;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

.job .title {
    font-size: 20px;
}

.job .date-wrapper {
    display: flex;
    height: 16px;
    align-items: center;
}

.job .date-wrapper img {
    margin-right: 8px;
    height: 100%;
    margin-bottom: 1rem;
}

.job .date-wrapper p {
    margin-right: 8px;
}

.employment-type {
    display: flex;
}

.employment-type img {
    height: 24px;
    margin-right: 4px;
}

.detail-table {
    margin-bottom: 40px;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

.detail-table th {
    background-color: #FFC4D3;
    padding: 16px;
}

.detail-table td {
    word-wrap: break-word;
    padding: 16px;
    text-align: left;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 3;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    z-index: 2;
}

#myBtn img {
    width: 40px;
}

.detail-table th,
.detail-table td {
    border: 1px solid #AE7F46;
}

.detail-table th {
    width: 160px;
}

.apply-button {
    background-color: #F4881C;
    text-decoration: none;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 24px;
}

.apply-button:hover {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 768px) {
    .detail-table th,
    .detail-table td {
        width: 100%;
        text-align: left;
    }

    .detail-table th,
    .detail-table td {
        border: 3px solid #AE7F46;
        border-bottom: none;
        display: block;
    }

    tr:last-child td {
        border-bottom: 3px solid #AE7F46;
    }

    #myBtn {
        right: 12px;
    }

    #myBtn img {
        width: 32px;
    }
}