.job-offers-container {
    /*max-width: 1140px;*/
    width: 100%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.job-filter-form {
    margin-bottom: 30px;
    text-align: right;
}

.job-filter-form select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    min-width: 200px;
}

.job-offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-offer-item {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.job-offer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.job-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-offer-header h3 {
    margin: 0;
    font-size: 1.6em;
}

.job-offer-header h3 a {
    color: #0073aa;
    text-decoration: none;
}

.job-city {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.05em;
    color: #666;
}

.job-offer-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #444;
}

.job-salary {
    font-weight: bold;
    color: #2c3e50;
}

.job-contract {
    font-style: italic;
    color: #7f8c8d;
}

.job-view-button {
    display: inline-block;
    background-color: #0073aa !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.job-view-button:hover {
    background: #005177;
    color: #fff;
}

/* Form Styles */
.job-form-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.job-form-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.job-form-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.job-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.job-form-field input[type="text"],
.job-form-field input[type="email"],
.job-form-field input[type="tel"],
.job-form-field select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Single Page Styles */
.job-single-container {
    max-width: 1140px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 18px;
}

.job-meta-info {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    margin: 20px 0;
}

.job-meta-item strong {
    display: block;
    font-size: 0.95em;
    color: #888;
    text-transform: uppercase;
}

.job-description {
    line-height: 1.6;
    margin-top: 30px;
}

.job_offer-template-default .elementor-element-4dd4772  {
    display: none !important;
}

.job_offer-template-default .elementor-element.elementor-element-799ede6e {
    display: none !important;
}
.job_offer-template-default .elementor-element-3f9f84d7 {
    min-height: 400px;
}

.page-id-1832 .elementor-element-4dd4772  {
    display: none !important;
}

.page-id-1832 .elementor-element.elementor-element-799ede6e {
    display: none !important;
}
.page-id-1832 .elementor-element-3f9f84d7 {
    min-height: 400px;
}

.post-1832 {
    margin-top: 30px;
    margin-bottom: 150px;
}

/* Modal Styles */
.job-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.job-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.job-modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.job-modal-close:hover {
    color: #000;
}

.job-form-field {
    margin-bottom: 20px;
}

.job-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.job-form-field input[type="text"],
.job-form-field input[type="email"],
.job-form-field input[type="tel"],
.job-form-field input[type="file"],
.job-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.job-form-field textarea {
    height: 100px;
    resize: vertical;
}

#job-apply-button {
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

#job-form-response {
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#job-form-response.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

#job-form-response.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}