
        #hero.job-hero-section {
            padding-bottom: 60px !important;
            padding-top:70px !important;
        }

        /* Container genişletme - görseldeki gibi */
        .preview-advertisement-container .container,
        .row .container {
            max-width: 100%;
            padding-left: 40px;
            padding-right: 40px;
        }

        /* Sidebar Layout Container */
        .preview-sidebar-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        .preview-sidebar {
            flex: 0 0 380px; /* Daha dar, uzun ince sidebar */
            position: sticky;
            top: 20px;
            max-height: calc(100vh - 40px);
        }

        .preview-main-content {
            flex: 1;
            min-width: 0; /* Prevent flex item from overflowing */
            margin-top: 20px; /* İlan kartıyla aynı hizada başlat */
        }

        .preview-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 0; /* Sidebar içinde margin-bottom yok */
            padding-bottom: 20px; /* white space under info-grid inside the card */
            overflow: hidden; /* prevent inner negative margins from causing x-scroll */
        }

        .preview-header {
            padding: 24px 28px; /* Daha uzun görünüm için padding ayarı */
            position: relative;
        }

        .preview-title-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .preview-title {
            font-size: 28px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0;
            flex: 1;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .meta-item i {
                font-size: 16px;
            }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr; /* Tek sütun - bilgiler alt alta */
            gap: 16px 0; /* row-gap: 16px, column-gap: 0 */
            padding: 16px 24px 24px 24px; /* Daha uzun görünüm için padding ayarı */
            margin: 0 16px 0 16px; /* Dar sidebar için margin ayarı */
            background-color: #f8f9fa;
        }

        /* Başvur Butonu Container - Info Grid Altında */
        .apply-button-container {
            padding: 20px 24px;
            margin: 0 16px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            min-width: 0; /* Grid içinde taşmayı önler */
        }

            .info-item:last-child {
                padding-left: 0; /* Orantılı grid'de padding gerekmez */
            }

        .info-label {
            font-size: 11px;
            color: #6c757d;
            text-transform: none;
            margin-bottom: 6px;
            font-weight: 400;
            letter-spacing: 0;
            line-height: 1.5;
        }

        .info-value {
            font-size: 16px;
            color: #212529;
            font-weight: 600;
            line-height: 1.5;
        }

        .badge-count {
            background-color: transparent;
            color: #212529;
            padding: 0;
            border-radius: 0;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
        }

        .preview-content {
            background: white;
            border-radius: 8px;
            padding: 20px 30px;
            margin-top: 0; /* Başlangıç hizasını eşitle - sidebar ile aynı seviyede */
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        /* Quill editöründe kaydedilen HTML'in birebir aynı görünmesi için */
        /* Sadece temel container stili, HTML içindeki elementlere stil uygulanmıyor */
        .description-content {
            font-size: 14px;
            line-height: 1.8;
            color: #495057;
        }

        /* Toggle button hidden - content always expanded */
        .toggle-description-btn {
            display: none !important;
        }

        .candidate-criteria {
            background: white;
            border-radius: 8px;
            padding: 20px 30px;
            margin-top: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .criteria-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .criteria-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px 20px;
            align-items: start;
        }

        .criteria-item {
            display: contents;
        }

        .criteria-label {
            font-size: 13px;
            font-weight: 600;
            color: #6c757d;
            line-height: 1.5;
            padding-right: 10px;
            white-space: nowrap;
        }

        .criteria-value {
            font-size: 14px;
            color: #212529;
            font-weight: 600;
            line-height: 1.5;
            word-wrap: break-word;
        }

        /* Responsive: Küçük ekranlarda dikey düzen */
        @@media (max-width: 768px) {
            .criteria-grid {
                grid-template-columns: 1fr;
                gap: 8px 0;
            }

            .criteria-item {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

            .criteria-label {
                white-space: normal;
                padding-right: 0;
            }
        }


        .btn-apply {
            background-color: #405189;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
        }

            .btn-apply i {
                font-size: 16px;
            }

            .btn-apply:hover {
                background-color: #2c3a61;
            }

        .btn-apply:disabled,
        .btn-apply.applied {
            background-color: #c9c9c9;
            color: #ffffff;
            cursor: not-allowed;
            box-shadow: none;
        }

            .btn-apply:disabled:hover,
            .btn-apply.applied:hover {
                background-color: #c9c9c9;
            }

        .btn-share {
            background: none;
            border: none;
            color: #6c757d;
            font-size: 20px;
            cursor: pointer;
            padding: 6px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 6px;
            margin-left: 12px;
        }

            .btn-share:hover {
                color: #405189;
                background-color: #f8f9fa;
            }

            .btn-share:hover {
                background-color: #f8f9fa;
            }

        .btn-share:disabled {
            color: #c9c9c9;
            cursor: not-allowed;
            opacity: 0.6;
        }

            .btn-share:disabled:hover {
                background-color: transparent;
            }

        /* Share Modal Styles */
        .share-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

            .share-modal-overlay.show {
                display: flex;
            }

        .share-modal {
            background: white;
            border-radius: 8px;
            padding: 20px 24px;
            max-width: 480px;
            width: 90%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .share-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e9ecef;
        }

        .share-modal-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .share-modal-close {
            background: none;
            border: none;
            font-size: 22px;
            color: #6c757d;
            cursor: pointer;
            padding: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

            .share-modal-close:hover {
                background-color: #f8f9fa;
                color: #2c3e50;
            }

        .share-social-icons {
            display: flex;
            gap: 18px;
            justify-content: center;
            margin-bottom: 18px;
        }

        .share-social-icon {
            width: 48px;
            height: 48px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: none;
            text-decoration: none;
            font-size: 24px;
            color: white;
        }

            .share-social-icon:hover {
                transform: none;
            }

            .share-social-icon.facebook {
                background-color: #1877f2;
            }

            .share-social-icon.twitter {
                background-color: #000000;
            }

            .share-social-icon.linkedin {
                background-color: #0077b5;
            }

        .share-separator {
            display: flex;
            align-items: center;
            margin: 18px 0;
            text-align: center;
        }

            .share-separator::before,
            .share-separator::after {
                content: '';
                flex: 1;
                height: 1px;
                background-color: #e9ecef;
            }

            .share-separator span {
                padding: 0 15px;
                color: #6c757d;
                font-size: 14px;
            }

        .share-url-container {
            display: flex;
            gap: 0;
            align-items: stretch;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            overflow: hidden;
            background-color: white;
        }

        .share-url-input {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 0;
            font-size: 12px;
            color: #495057;
            background-color: white;
            resize: none;
            word-wrap: break-word;
            white-space: normal;
            height: auto;
            font-family: inherit;
            line-height: 1.5;
            overflow: hidden;
        }

            .share-url-input:focus {
                outline: none;
                background-color: white;
            }

        .share-copy-btn {
            background-color: transparent;
            color: #405189;
            border: none;
            padding: 12px 16px;
            border-radius: 0;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: none;
            white-space: nowrap;
            min-width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .share-url-container .share-copy-btn {
            border-top-right-radius: 6px;
            border-bottom-right-radius: 6px;
        }

        .share-copy-btn:hover {
            background-color: transparent;
            color: #405189;
        }

        .share-copy-btn.copied {
            background-color: transparent;
            color: #405189;
        }

        .share-copy-btn i {
            margin-right: 6px;
            font-size: 16px;
            display: none;
        }

        .share-copy-btn.copied i {
            display: inline-block;
        }
        .meta-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0;
            margin-bottom: 0;
        }

        .meta-info-left {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #6c757d;
        }

        .meta-info-right {
            font-size: 13px;
            color: #6c757d;
            text-align: right;
        }

        /* Küçük ekranlarda header sağ bölüm (başvur/paylaş) taşmasını engelle */
        @@media (max-width: 576px) {
            .share-modal {
                padding: 20px;
            }

            .share-social-icons {
                gap: 10px;
            }

            .share-social-icon {
                width: 48px;
                height: 48px;
                font-size: 24px;
            }

            .share-url-container {
                flex-direction: column;
            }

            .share-url-input {
                width: 100%;
            }

            .share-copy-btn {
                width: 100%;
            }
            .preview-title-wrapper {
                flex-wrap: wrap;
                gap: 10px;
            }

            .btn-apply {
                padding: 12px 20px;
            }

            .btn-share {
                font-size: 18px;
                padding: 6px 8px;
            }
        }

        /* Info grid küçük ekran uyumu */
        @@media (max-width: 992px) {
            .preview-advertisement-container .container,
            .row .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .preview-sidebar-layout {
                flex-direction: column;
                gap: 20px;
            }

            .preview-sidebar {
                flex: 1;
                position: relative;
                top: 0;
                width: 100%;
                max-height: none;
            }

            .preview-main-content {
                margin-top: 0; /* Mobilde gap ile hizalama yeterli */
            }
        }

        @@media (max-width: 768px) {
            .preview-advertisement-container .container,
            .row .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            .preview-sidebar {
                flex: 0 0 100%;
            }

            .info-grid {
                grid-template-columns: 1fr; /* Sidebar içinde her zaman tek sütun */
            }
        }

        @@media (max-width: 576px) {
            .preview-advertisement-container .container,
            .row .container {
                padding-left: 10px;
                padding-right: 10px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* Responsive modda uyarı için ekstra margin-top ve margin-bottom */
        @@media (max-width: 991px) {
            #hero.job-hero-section {
                padding-bottom: 60px !important;
                padding-top: 70px !important;
            }
            .alert.alert-info.mt-3 {
                margin-top: 1.5rem !important;
            }
        }
    
