/* ========================================================================== 
Nome del File: style.css 
Descrizione: CP Recruit WordPress Plugin Stylesheet 
Autore: Gruppo Centro Paghe 
Data: 2024-11-20
Versione: 1.0.1b 
========================================================================== */

.job-feed {
    margin: 20px 0;
    /* Uncomment this and choose any number to display the posts in two or more columns. */
    /* columns: 2; */
}

.job-feed h1 {
    /* Personalizes the main title of the job item */
}

.job-item {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    /* Uncomment to display shadows on posts */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.job-item h3 {
    margin: 0 0 10px;
}

.job-item p {
    margin: 5px 0;
}

.job-item a {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
    /* Uncomment to make it a button */
    /* background-color: orange;
    padding: 1rem 2rem;
    border-radius: .5rem; */
}

.job-item a:hover {
    text-decoration: underline;
    /* background-color: rgb(255, 182, 47); */
}

.job-item a:active {
    /* Uncomment for making it a button */
    /* background-color: rgb(223, 145, 0); */
}

.btn-expand {
    /* Expand button properties */

    display: inline-block;
    outline: 0;
    cursor: pointer;
    border: 1px solid #1d1c1d4d;
    font-weight: 700;
    background: #fff;
    padding: 0 8px 1px;
    font-size: 13px;
    border-radius: 4px;
    color: rgb(29, 28, 29);
    height: 28px;
    min-width: 56px;
    transition: all 80ms linear;

    :hover {
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%);
        background: rgba(248, 248, 248, 1);
    }
}

.btn-apply {
    /* Apply button properties */
    float: right;
}