/* Modern ve responsive İnsan Kaynakları (İK) stilleri */

.hrAddInfo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    letter-spacing: 0.01em;
}
.basvuru-type-group {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 18px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(239,125,0,0.04);
}
.basvuru-type-box {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.basvuru-type-box input[type="radio"] {
    display: none;
}
.basvuru-type-box label {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
    justify-content: center;
}
.basvuru-type-box input[type="radio"]:checked + label {
    border-color: #ef7d00;
    background: #fff7ef;
    color: #ef7d00;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239,125,0,0.10);
}
.basvuru-type-box label:hover,
.basvuru-type-box input[type="radio"]:focus + label {
    border-color: #ef7d00;
    background: #fff3e0;
    color: #ef7d00;
}

#position.select2-hidden-accessible + .select2-container .select2-selection--single {
    min-height: 52px;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(239,125,0,0.06);
    border: 2px solid #e0e0e0;
    background: #fff;
    transition: border-color 0.2s;
}
#position.select2-hidden-accessible + .select2-container .select2-selection--single:focus,
#position.select2-hidden-accessible + .select2-container .select2-selection--single:active {
    border-color: #ef7d00;
}

#acikIlanForm, #genelBasvuruForm {
    margin-bottom: 18px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
}
#acikIlanForm.hide, #genelBasvuruForm.hide {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.hrFullInput {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f7;
    box-shadow: 0 2px 8px rgba(239,125,0,0.03);
}
.hrCbBox {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    margin: 0;
    min-width: 70px;
}
.hrCbBox input[type="radio"] {
    display: none;
}
.hrCbBox label {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border: none;
    background: #fff;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
    border-right: 1px solid #f0f0f0;
}
.hrCbBox:last-child label {
    border-right: none;
}
.hrCbBox input[type="radio"]:checked + label {
    background: #fff7ef;
    color: #ef7d00;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(239,125,0,0.10);
    border-bottom: 3px solid #ef7d00;
    z-index: 2;
}
.hrCbBox label:hover,
.hrCbBox input[type="radio"]:focus + label {
    background: #fff3e0;
    color: #ef7d00;
}
.hrCbBox label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    margin-right: 8px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}
.hrCbBox input[type="radio"]:checked + label::before {
    border-color: #ef7d00;
    background: radial-gradient(circle at center, #ef7d00 60%, #fff 61%);
}

@media (max-width: 768px) {
    .basvuru-type-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px 8px;
    }
    .basvuru-type-box label {
        min-width: 100px;
        font-size: 0.98rem;
        padding: 8px 10px;
    }
    .hrFullInput {
        flex-direction: column;
        gap: 6px;
        border-radius: 10px;
    }
    .hrCbBox label {
        border-radius: 8px !important;
        border-right: none;
        margin-bottom: 0;
        padding: 10px 0;
        font-size: 0.95rem;
    }
    .hrCbBox label::before {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

/* Diğer Bilgiler modern kart görünümü */
.ik-form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 28px 28px 28px;
    margin-bottom: 32px;
    border: 1.5px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.ik-form-card .basvuru-type-group {
    margin-bottom: 18px;
    margin-top: 0;
}
.ik-form-card .fullInput,
.ik-form-card .hrFullCbLine {
    margin-bottom: 16px;
}
.ik-form-card .form-select,
.ik-form-card input[type="text"],
.ik-form-card input[type="email"] {
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 1rem;
    background: #fafbfc;
    transition: border-color 0.2s;
}
.ik-form-card .form-select:focus,
.ik-form-card input[type="text"]:focus,
.ik-form-card input[type="email"]:focus {
    border-color: #ef7d00;
    background: #fff7ef;
}
.ik-form-card .hrFullCbLine {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    color: #444;
}
.ik-form-card .hrFullCbLine input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #ef7d00;
    margin-right: 10px;
    margin-top: 2px;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}
.ik-form-card .hrFullCbLine label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}
.ik-form-card .btnKaydet, .ik-form-card button[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #ef7d00 0%, #d32f2f 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(239,125,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.ik-form-card .btnKaydet:hover, .ik-form-card button[type="submit"]:hover {
    background: linear-gradient(90deg, #d66e00 0%, #b71c1c 100%);
    box-shadow: 0 4px 16px rgba(239,125,0,0.13);
}
@media (max-width: 600px) {
    .ik-form-card {
        padding: 18px 6px 18px 6px;
        max-width: 100%;
        border-radius: 12px;
    }
    .ik-form-card .btnKaydet {
        padding: 13px 0;
        font-size: 1rem;
    }
}

/* Select2 temizle (X) butonu modernleştirme */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #fff !important;
    background: #d32f2f !important;
    border-radius: 50%;
    border: 1.5px solid #d32f2f;
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
    line-height: 22px;
    text-align: center;
    right: 28px !important; /* Arrow'dan önce (arrow right: 10px, clear icon right: 28px) */
    top: 50% !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 2px 8px rgba(211,47,47,0.10);
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
    opacity: 0.92;
    z-index: 3 !important;
    position: absolute !important;
    float: none !important; /* Float'ı kaldır */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    background: #b71c1c !important;
    color: #fff !important;
    border-color: #b71c1c;
    opacity: 1;
} 



.select2-container {
    width: 100% !important;
}
.select2-container .select2-selection--single {
    height: 45px !important;
    padding: 10px 15px !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 45px 0 0 !important; /* Clear icon ve arrow için sağdan boşluk */
    line-height: 24px !important;
    color: #212529;
}
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
}
.select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 10px 15px;
    height: 45px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #dc3545;
}
.select2-results__option {
    padding: 10px 15px;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 0.375rem;
    padding: 0.5rem;
    border-left: 3px solid #dc3545;
}

.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
}

.hrFullCbLine .invalid-feedback {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.form-select.is-invalid {
    padding-right: 4.125rem !important;
}

.job-section-title {
    color: #d32f2f;
    margin-bottom: 20px;
}

/* Form Layout Düzeni - 50/50 Bölünmüş */
.formRowMain {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: 100vh;
}

.formRowLeft {
    flex: 1;
    min-width: 0;
    max-width: 50%;
}

.formRowRight {
    flex: 1;
    min-width: 0;
    max-width: 50%;
}

/* Aktif İş İlanları Bölümü Yeni Stil */
.job-listings-section {
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(211, 47, 47, 0.1);
    height: calc(100vh - 200px); /* Viewport yüksekliğine göre */
    display: flex;
    flex-direction: column;
}

.job-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d32f2f;
}

.job-count-badge {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

/* Arama Kutusu Stilleri */
.job-search-container {
    margin-bottom: 20px;
}

.job-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.job-search-box:focus-within {
    border-color: #d32f2f;
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15);
}

.job-search-box i.fa-search {
    color: #6c757d;
    margin-right: 12px;
    font-size: 1rem;
}

.job-search-box:focus-within i.fa-search {
    color: #d32f2f;
}

#jobSearchInput {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #495057;
    background: transparent;
}

#jobSearchInput::placeholder {
    color: #adb5bd;
}

.clear-search-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.clear-search-btn:hover {
    background: #f8f9fa;
    color: #d32f2f;
}

/* Arama Sonucu Bulunamadı */
.no-search-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.no-search-results i {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.no-search-results h5 {
    color: #495057;
    margin-bottom: 10px;
}

.no-search-results p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.job-listings-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px; /* Scrollbar için boşluk */
    margin-right: -10px; /* Scrollbar boşluğunu dengele */
}

/* Scrollbar Stilleri */
.job-listings-container::-webkit-scrollbar {
    width: 8px;
}

.job-listings-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.job-listings-container::-webkit-scrollbar-thumb {
    background: #d32f2f;
    border-radius: 4px;
}

.job-listings-container::-webkit-scrollbar-thumb:hover {
    background: #b71c1c;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 15px 0;
}

.job-card:nth-child(odd),
.job-card:nth-child(even) {
    background: none;
}

.job-card.zebra-odd {
    background-color: #ffffff;
}

.job-card.zebra-even {
    background-color: #f8f9fa;
}

.job-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 340px;
    max-height: 420px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.08);
}

.job-card-header {
    padding: 25px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    background: #fff;
    gap: 16px;
}

.job-header-main {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.job-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
    font-size: 1.2rem;
    border: 1px solid rgba(211, 47, 47, 0.1);
    transition: all 0.3s ease;
}

.job-header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-title {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.job-date-small {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.job-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(211, 47, 47, 0.1) 0%, 
        rgba(211, 47, 47, 0.05) 50%, 
        rgba(211, 47, 47, 0) 100%);
}

.job-badge {
    background: #fff;
    color: #d32f2f;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(211, 47, 47, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover .job-badge {
    background: #d32f2f;
    color: #fff;
}

.job-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 80px;
    padding: 25px;
    background: #fff;
}

.job-card-footer {
    flex-shrink: 0;
    padding: 20px 25px;
    display: flex;
    gap: 12px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.detail-btn, .apply-btn {
    flex: 1;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.detail-btn {
    background-color: #ffffff;
    color: #d32f2f;
    border: 1.5px solid #d32f2f;
}

.detail-btn:hover {
    background-color: #d32f2f;
    color: #ffffff;
}

.detail-btn i {
    color: inherit;
}

.apply-btn {
    background-color: #ef7d00;
    color: #ffffff;
    border: 1.5px solid #ef7d00;
}

.apply-btn:hover {
    background-color: #d66e00;
    border-color: #d66e00;
}

.apply-btn i {
    color: #ffffff;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .job-card {
        min-height: 260px;
        max-height: 340px;
    }

    .job-card-header {
        padding: 20px 20px 15px;
    }

    .job-card-body {
        padding: 20px;
    }

    .job-title {
        font-size: 1.2rem;
    }

    .job-card-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .job-card {
        min-height: 280px;
    }

    .job-card-header {
        padding: 15px 15px 12px;
    }

    .job-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .job-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .job-card-body {
        padding: 15px;
        gap: 12px;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .job-description {
        font-size: 0.9rem;
    }

    .job-card-footer {
        padding: 12px 15px;
        gap: 8px;
    }

    .detail-btn, .apply-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Grid düzeni için ek stiller */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 15px 0;
}

@media (max-width: 1200px) {
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .job-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* İş İlanı Yok Durumu İçin Stil */
.no-job-postings-container {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    margin-top: 30px;
    border: 2px dashed #dee2e6;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-job-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-job-postings-container h5 {
    color: #495057;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-job-postings-container p {
    color: #6c757d;
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.6;
}

/* Swiper Navigation */
.jobSwiper .swiper-button-next:after,
.jobSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.jobSwiper .swiper-button-next:hover,
.jobSwiper .swiper-button-prev:hover {
    background: #d32f2f;
    color: #fff;
    transform: scale(1.1);
}

.jobSwiper .swiper-pagination-bullet {
    background: #d32f2f;
    opacity: 0.3;
}

.jobSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Modal Stilleri */
.modal {
    z-index: 1055;
}

.modal-dialog {
    margin: 1.75rem auto;
    max-width: 800px;
    position: relative;
}

.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff;
    padding: 25px 30px;
    border-bottom: none;
    position: relative;
}

.modal-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
}

/* Kapat İkonu */
.modal-close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.modal-close-icon:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    background: #f8f9fa;
}

.job-detail-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-info-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-info-item {
    flex: 1;
    min-width: 200px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.job-info-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.job-info-item span {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

.job-date-range {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.date-info {
    flex: 1;
    min-width: 150px;
        padding: 15px;
    background: rgba(211, 47, 47, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.date-info label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.date-info span {
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
}

.job-description {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.job-description label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 18px;
    font-size: 1rem;
}

.job-description #modalJobDetail {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
    background: #fff;
}

.apply-job-btn {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.apply-job-btn:hover {
    background: linear-gradient(135deg, #b71c1c, #8e0000);
    transform: translateY(-1px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .formRowMain {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .formRowLeft,
    .formRowRight {
        flex: 1;
        max-width: 100%;
    }

    .job-listings-section {
        padding: 20px;
        margin-bottom: 20px;
        min-height: 500px;
    }

    .job-section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .job-listings-container {
        min-height: 400px;
        padding: 10px 0;
    }

    .jobSwiper {
        height: 520px; /* Mobile için daha küçük yükseklik */
    }

    .job-card {
        padding: 16px;
        margin: 0 5px;
        height: 240px;
    }

    .job-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .job-title-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .job-title {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .job-date-small {
        font-size: 0.7rem;
        padding: 3px 6px;
        align-self: flex-start;
    }

    .job-card-footer {
        gap: 8px;
        flex-direction: column;
    }

    .detail-btn, .apply-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .jobSwiper .swiper-button-next,
    .jobSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        bottom: 50px;
    }

    .jobSwiper .swiper-button-next:after,
    .jobSwiper .swiper-button-prev:after {
        font-size: 14px;
    }

    .job-search-box {
        padding: 10px 16px;
    }

    #jobSearchInput {
        font-size: 0.9rem;
    }

    .job-search-box i.fa-search {
        margin-right: 10px;
        font-size: 0.9rem;
    }

    /* Modal Mobile */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-close-icon {
        top: 15px;
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .modal-body {
        padding: 20px;
    }

    .job-info-row {
        flex-direction: column;
        gap: 15px;
    }

    .job-info-item {
        min-width: auto;
        padding: 15px;
    }

    .job-date-range {
        flex-direction: column;
        gap: 10px;
    }

    .date-info {
        min-width: auto;
        padding: 12px;
    }

    .job-description {
        padding: 20px;
    }

    .no-job-postings-container {
        padding: 40px 15px;
        min-height: 250px;
    }

    .no-job-icon {
        font-size: 3rem;
    }
}

/* Başlık Stilleri */
.job-list-title {
    color: #d32f2f;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-list-title i {
    color: #d32f2f;
    font-size: 1.5rem;
}

/* Sürücü Belgesi Radyo Butonları Modern Tasarım */
.hrFullInput {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f7;
    box-shadow: 0 2px 8px rgba(239,125,0,0.03);
}
.hrCbBox {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    margin: 0;
    min-width: 70px;
}
.hrCbBox input[type="radio"] {
    display: none;
}
.hrCbBox label {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border: none;
    background: #fff;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
    border-right: 1px solid #f0f0f0;
}
.hrCbBox:last-child label {
    border-right: none;
}
.hrCbBox input[type="radio"]:checked + label {
    background: #fff7ef;
    color: #ef7d00;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(239,125,0,0.10);
    border-bottom: 3px solid #ef7d00;
    z-index: 2;
}
.hrCbBox label:hover,
.hrCbBox input[type="radio"]:focus + label {
    background: #fff3e0;
    color: #ef7d00;
}

/* Modern radyo işareti */
.hrCbBox label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    margin-right: 8px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}
.hrCbBox input[type="radio"]:checked + label::before {
    border-color: #ef7d00;
    background: radial-gradient(circle at center, #ef7d00 60%, #fff 61%);
}

@media (max-width: 768px) {
    .hrFullInput {
        flex-direction: column;
        gap: 6px;
        border-radius: 10px;
    }
    .hrCbBox label {
        border-radius: 8px !important;
        border-right: none;
        margin-bottom: 0;
        padding: 10px 0;
        font-size: 0.95rem;
    }
    .hrCbBox label::before {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

/* Select2 temizle (X) butonu modernleştirme */
.select2-container--default .select2-selection--single .select2-selection__clear {
    /* color: #ef7d00 !important; */
    background: #fff7ef !important;
    border-radius: 50%;
    border: 1.5px solid #ef7d00;
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
    line-height: 22px;
    text-align: center;
    right: 28px !important; /* Arrow'dan önce (arrow right: 10px, clear icon right: 28px) */
    top: 50% !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 2px 8px rgba(239,125,0,0.08);
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
    opacity: 0.85;
    z-index: 3 !important;
    position: absolute !important;
    float: none !important; /* Float'ı kaldır */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    background: #ef7d00 !important;
    color: #fff !important;
    border-color: #ef7d00;
    opacity: 1;
}

.modern-radio-group {
    display: flex;
    gap: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(239,125,0,0.03);
    align-items: center;
    justify-content: flex-start;
}

.modern-radio-group input[type="radio"] {
    display: none;
}

.modern-radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: 1.5px solid #e0e0e0;
    transition: all 0.2s;
    position: relative;
    box-shadow: none;
}

.modern-radio-group input[type="radio"]:checked + label {
    background: #fff7ef;
    color: #ef7d00;
    border-color: #ef7d00;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(239,125,0,0.10);
}

.modern-radio-group label:hover,
.modern-radio-group input[type="radio"]:focus + label {
    background: #fff3e0;
    color: #ef7d00;
    border-color: #ef7d00;
}

.modern-radio-group label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    margin-right: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.modern-radio-group input[type="radio"]:checked + label::before {
    border-color: #ef7d00;
    background: radial-gradient(circle at center, #ef7d00 60%, #fff 61%);
}

@media (max-width: 600px) {
    .modern-radio-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px 8px;
    }
    .modern-radio-group label {
        width: 100%;
        justify-content: flex-start;
        font-size: 0.97rem;
        padding: 10px 12px;
    }
    .modern-radio-group label::before {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

/* Remove custom styles for .sticky-submit-bar .redButton, keep only sticky bar container styles */
.sticky-submit-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #fff 90%, #fff7ef 100%);
    padding: 18px 0 10px 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    border-top: 1.5px solid #f0e0d6;
}
@media (max-width: 600px) {
    .sticky-submit-bar {
        padding: 12px 0 8px 0;
        justify-content: center;
    }
}

#genelBasvuruForm.sticky-genel {
    position: sticky;
    top: 90px; /* Üstte header veya menü varsa ona göre ayarlayın */
    z-index: 20;
    background: #fff;
    box-shadow: 0 2px 12px rgba(239,125,0,0.07);
    border-radius: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: box-shadow 0.2s;
}

@media (max-width: 900px) {
    #genelBasvuruForm.sticky-genel {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}
