.chips-filer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.chips-filer input[type="radio"] {
    display: none;
}

    .chips-filer label {
        position: relative;
        color: #424242;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.8em;
        border: 1px solid #a1a1a1;
        padding: 4px 20px;
        border-radius: 25px;
        margin-bottom: 0;
        white-space: nowrap;
    }

.chips-filer input[type="radio"]:checked + label {
    background-color: #444444;
    border-color: #444444;
    color: #ffffff;
}


body .job-posting-table table.table {
    border-spacing: 0 10px;
    border-collapse: separate;
}

body .job-posting-table table.table tbody tr {
    transition: all 0.1s linear;
   
}

body .job-posting-table table.table tbody tr:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

body .job-posting-table table.table thead tr th,
body .job-posting-table table.table tbody tr td {
    font-size: 14px;
    vertical-align: middle !important;
    border: 0 !important;
    background-color: #ffffff;
}

body .job-posting-table table.table thead tr th {
    background-color: #ededed;
}

body .job-posting-table table.table tr td a.job-title:hover {
    color: #1abc9c;
}

body .job-posting-table table.table tr td p {
    width: 300px;
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    .chips-filer {
        overflow-x: auto;
    }

    .chips-filter label {
        white-space: nowrap;    
    }

    body .job-posting-table table.table {
        display: block;
        overflow-x: auto;
    }

    body .job-posting-table table.table tbody tr td {
        white-space: nowrap;
    }

    body .job-posting-table table.table tbody tr td p {
        width: 250px;
        white-space:normal;
    }
}