.zoho-job-filters {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.job-filter-form .filter-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 15px;
    align-items: end;
}

.filter-field input,
.filter-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.filter-field input:focus,
.filter-field select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.filter-submit {
    padding: 12px 25px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.filter-submit:hover {
    background: #0052a3;
}

.filter-reset {
    display: inline-block;
    margin-left: 10px;
    padding: 12px 20px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.filter-reset:hover {
    background: #e0e0e0;
}

.zoho-results-count {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .job-filter-form .filter-row {
        grid-template-columns: 1fr;
    }
    
    .filter-field {
        width: 100%;
    }
}


/* Zoho Recruit Job Listings - style.css */

.zoho-job-listings {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.zoho-job-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s;
}

.zoho-job-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.zoho-job-card .job-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.zoho-job-card .job-title a {
    color: #0066cc;
    text-decoration: none;
}

.zoho-job-card .job-title a:hover {
    text-decoration: underline;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9em;
}

.job-location,
.job-type,
.job-experience {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.job-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.job-link:hover {
    text-decoration: underline;
}

/* Paginazione */
.zoho-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.zoho-pagination a {
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.zoho-pagination a:hover {
    background: #0052a3;
}

.zoho-pagination .page-number {
    font-weight: bold;
    color: #333;
}

/* Pagina dettaglio */
.zoho-job-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.zoho-job-detail .job-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.job-meta-detail {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.meta-item {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.meta-item strong {
    color: #333;
    margin-right: 5px;
}

.job-description,
.job-skills {
    margin-bottom: 30px;
}

.job-description h2,
.job-skills h2 {
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #333;
}

.job-description p,
.job-description ul,
.job-description ol {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.job-description ul,
.job-description ol {
    padding-left: 25px;
}

.job-description li {
    margin-bottom: 8px;
}

.job-apply {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
}

.apply-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Messaggi di errore */
.zoho-error {
    padding: 15px;
    background: #ffe6e6;
    border: 1px solid #ff0000;
    border-radius: 5px;
    color: #cc0000;
    margin: 20px 0;
}

.zoho-no-jobs {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .zoho-job-card {
        padding: 15px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .zoho-job-detail .job-title {
        font-size: 1.5em;
    }
    
    .job-meta-detail {
        padding: 15px;
    }
    
    .apply-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}