/**
* Plugin Name: Taleez Jobs
* Plugin URI: https://taleez.com
* Description: This is a plugin to display jobs from your Taleez account
* Version: 1.1
* License: GPL-3.0
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Author: Taleez
* Author URI: https://taleez.com
*/

#tlz-jobs * {
    font-family: Arial, sans-serif;
    word-break: break-word;
}

#tlz-jobs .tlz-job {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 24px;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 2px 2px -2px rgba(23,32,47,.03), 0 5px 6px -2px rgba(52,69,98,.1), 0 5px 10px -5px rgba(0,0,0,.08);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}

#tlz-jobs .tlz-job:hover {
    box-shadow: 0 10px 25px -2px rgba(23,32,47,.06), 0 10px 19px -9px rgba(52,69,98,.13), 0 5px 14px -7px rgba(0,0,0,.11);
}

#tlz-jobs .tlz-job .tlz-job-logo {
    margin-right: 24px;
    min-height: 75px;
    min-width: 75px;
    white-space: nowrap;
    position: relative;
}

#tlz-jobs .tlz-job .tlz-job-logo img {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
}

#tlz-jobs .tlz-job .tlz-job-company {
    margin-bottom: 4px;
    color: #57738A;
    font-size: 16px;
}

#tlz-jobs .tlz-job .tlz-job-content {
    margin-right: 24px;
}

#tlz-jobs .tlz-job .tlz-job-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

#tlz-jobs .tlz-job .tlz-job-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

#tlz-jobs .tlz-job .tlz-job-infos .tlz-job-city {

}

#tlz-jobs .tlz-job .tlz-job-infos .tlz-job-contract {

}

#tlz-jobs .tlz-job .tlz-job-infos .tlz-job-date {

}

#tlz-jobs .tlz-empty-job {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 24px;
}

#tlz-jobs .tlz-job a.tlz-job-button {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 24px;
    border-radius: 4px;
    background: #fff;
    white-space: nowrap;
    margin-left: auto;
}

#tlz-jobs .tlz-job a.tlz-job-button:hover {
    color: #fff;
}
