/* React Mobile Menu Styles */
.mobile-menu-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-sidebar .menu-box {
    padding: 20px;
}

.mobile-menu-sidebar .close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #1967D2;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 50%;
    z-index: 1001;
}

.mobile-menu-sidebar .close-btn:hover {
    background: #e0e0e0;
}

.mobile-menu-sidebar .nav-logo {
    margin-bottom: 30px;
    margin-top: 20px;
}

.mobile-menu-sidebar .nav-logo img {
    max-width: 150px;
}

.mobile-menu-sidebar .navigation li {
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-sidebar .navigation li:last-child {
    border-bottom: none;
}

.mobile-menu-sidebar .navigation li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #202124;
    font-weight: 500;
}

.mobile-menu-sidebar .navigation li.current>a {
    color: #1967D2;
}

.mobile-menu-sidebar .outer-box {
    margin-top: 30px;
}

.mobile-menu-sidebar .login-box {
    margin-bottom: 15px;
}

.mobile-menu-sidebar .login-box a {
    color: #202124;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-sidebar .login-box .icon-user {
    margin-right: 10px;
    color: #1967D2;
}

/* ============================================
   KAYIT SAYFASI TASARIM İYİLEŞTİRMELERİ
   ============================================ */

/* Login Section İyileştirmesi - Tam yükseklik kullanımı */
.login-section {
    align-items: flex-start !important;
    padding: 0 !important;
    min-height: 100vh;
    overflow-y: auto;
}

.login-section .image-layer {
    position: fixed;
    height: 100vh;
}

/* Ereğli Belediyesi Logo - Sol Üst Köşe */
.belediye-logo-container {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.belediye-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    display: block;
}

@media (max-width: 768px) {
    .belediye-logo-container {
        top: 20px;
        left: 20px;
    }
    
    .belediye-logo {
        width: 120px;
    }
}

/* Login/Register Form Başlık İyileştirmesi */
.login-form .form-inner h3 {
    text-align: center;
    color: #202124;
    font-weight: 600;
}

/* Kayıt formu için genişlik ayarı - Bulunduğu alanın tamamını kullanır */
.login-section .outer-box {
    width: 100% !important;
    align-items: flex-start !important;
    padding-top: 40px;
    padding-bottom: 40px;
}

.login-section .login-form {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 40px;
}

/* Form içeriği için scroll kaldırıldı - Sayfa seviyesinde scroll */
.login-form .form-inner {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0;
}

/* Progress Steps - Modern Tasarım */
.register-progress {
    margin-bottom: 40px;
}

.register-progress .step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register-progress .step-circle.active {
    background: var(--ekip-orange);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.register-progress .step-circle:not(.active) {
    background: #f0f0f0;
    color: #999;
}


.register-progress .step-line {
    height: 4px;
    border-radius: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.register-progress .step-line.active {
    background: var(--ekip-orange);
}


/* Hesap Türü Seçim Kartları - Flat, Profesyonel Tasarım */
.register-step .account-type-card {
    position: relative;
    min-height: 160px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 24px;
    background: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.register-step .account-type-card:hover:not(.selected) {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.register-step .account-type-card.selected {
    border-color: var(--ekip-orange);
    border-width: 2px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.register-step .account-type-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: #f5f7fa;
}

.register-step .account-type-card.selected .icon-wrapper {
    background: var(--ekip-orange);
}

.register-step .account-type-card .icon-wrapper i {
    font-size: 28px;
    transition: all 0.3s ease;
    color: var(--ekip-orange);
}

.register-step .account-type-card.selected .icon-wrapper i {
    color: #ffffff;
}

.register-step .account-type-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.register-step .account-type-card.selected h5 {
    color: #202124;
}

.register-step .account-type-card p {
    font-size: 14px;
    color: #696969;
    line-height: 1.5;
    margin: 0;
}

/* Form Input İyileştirmeleri */
.register-step .form-group {
    margin-top: 24px;
    margin-bottom: 32px;
}

.register-step .form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 12px;
    display: block;
}

.register-step .form-group input[type="text"],
.register-step .form-group input[type="email"],
.register-step .form-group input[type="password"],
.register-step .form-group input[type="tel"],
.register-step .form-group input[type="date"],
.register-step .form-group input[type="number"],
.register-step .form-group input[type="url"],
.register-step .form-group textarea,
.register-step .form-group select {
    width: 100%;
    height: 60px;
    padding: 16px 20px;
    font-size: 15px;
    color: #202124;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Armata', sans-serif;
    line-height: 1.5;
}

.register-step .form-group textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding: 16px 20px;
}

.register-step .form-group input:focus,
.register-step .form-group textarea:focus,
.register-step .form-group select:focus {
    outline: none;
    border-color: var(--ekip-orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.register-step .form-group small.text-muted {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}

.register-step .form-group .text-danger {
    color: #dc3545;
    font-weight: 600;
}

.register-step .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23202124' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

/* Buton İyileştirmeleri */
.register-step .form-group .theme-btn {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 160px;
}

/* Register Navigation (Geri / Devam Et) - daha belirgin, tutarlı */
.register-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.register-nav .theme-btn {
    border-radius: 12px !important;
    padding: 14px 22px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 52px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    white-space: nowrap;
    transform: none;
}

/* Secondary: Geri */
.register-nav__back {
    background: #ffffff !important;
    color: #202124 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
}

.register-nav__back:hover {
    background: #f5f7fa !important;
    border-color: #d0d0d0 !important;
}

/* Primary: Devam Et / Kayıt Ol */
.register-nav__primary {
    flex: 1;
    min-width: 220px;
    background: var(--ekip-orange) !important;
    color: #ffffff !important;
    border: 1px solid var(--ekip-orange) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25) !important;
}

.register-nav__primary:hover {
    background: #e55a2b !important;
    border-color: #e55a2b !important;
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.32) !important;
}

/* Checkbox İyileştirmeleri */
.register-step .checkboxes {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.register-step .checkboxes input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--ekip-orange);
    margin-top: 2px;
}

.register-step .checkboxes label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.8;
}

/* Info Alert */
.register-step .alert-info {
    padding: 24px;
    background: rgba(255, 107, 53, 0.08);
    border-left: 4px solid var(--ekip-orange);
    border-radius: 8px;
    color: #202124;
    margin-top: 32px;
    line-height: 1.8;
}

.register-step .alert-info i {
    color: var(--ekip-orange);
    margin-right: 12px;
    font-size: 18px;
}

/* Step Başlıkları */
.register-step h4 {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 12px;
}

.register-step p.text {
    font-size: 15px;
    color: #696969;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Responsive */
/* Buton İyileştirmeleri */
.register-step .form-group .theme-btn {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 160px;
    transition: all 0.3s ease;
}

.register-step .form-group .theme-btn:hover {
    transform: translateY(-2px);
}

/* Link İyileştirmeleri */
.register-step a,
.register-step .alert-info a {
    color: var(--ekip-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.register-step a:hover,
.register-step .alert-info a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .login-section .login-form {
        padding: 0 20px;
    }
    
    .login-section .outer-box {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .login-form .form-inner h3 {
        font-size: 24px;
    }

    .register-progress .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .register-step .account-type-card {
        height: auto;
        min-height: 150px;
        padding: 25px;
    }

    .register-step .account-type-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .register-step .account-type-card .icon-wrapper i {
        font-size: 28px;
    }

    .register-step h4 {
        font-size: 22px;
    }

    .register-step .form-group .theme-btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .register-nav {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
    }

    .register-nav__primary,
    .register-nav__back {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   JOB SINGLE SAYFASI İYİLEŞTİRMELERİ
   ============================================ */

/* Badge'ler ve Bookmark - Sağa Yaslama */
.job-block-seven.at-jsv7 .tags {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.job-block-seven.at-jsv7 .tags span {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

.job-block-seven.at-jsv7 .tags button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
}

/* İş Özeti Sidebar - İkon ve Metin Hizalaması */
.sidebar-widget.at-jsv7 .job-overview.at-sv5 li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li .icon {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li > div {
    min-width: 0 !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li .ml15 {
    margin-left: 0 !important;
}

/* Job Block Content - Padding-left kaldırma */
.job-block .content,
.job-block-seven .content {
    padding-left: 0 !important;
}

/* Job Block Seven - Modern Card Design */
.job-block-seven.at-jsv7 {
    position: relative;
}

.job-block-seven.at-jsv7 .tags {
    position: absolute;
    top: -12px;
    right: 0;
    z-index: 10;
}

.job-block-seven.at-jsv7 .content {
    padding-right: 0 !important;
}

/* Job Info Cards Grid */
.job-block-seven.at-jsv7 .job-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

/* Responsive - Job Single */
@media (max-width: 768px) {
    .job-block-seven.at-jsv7 {
        padding: 20px !important;
    }
    
    .job-block-seven.at-jsv7 .tags {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-bottom: 16px;
        justify-content: flex-start !important;
        top: auto !important;
        right: auto !important;
        margin-bottom: 15px !important;
        justify-content: flex-start !important;
    }
    
    .job-block-seven.at-jsv7 .content.ps-0 {
        padding-right: 0 !important;
    }
    
    .job-block-seven.at-jsv7 .job-info-grid {
        grid-template-columns: 1fr !important;
    }
    
    .related-jobs {
        padding: 24px !important;
    }
    
    .related-jobs > div:first-child {
        grid-template-columns: 1fr !important;
    }
    
    .job-detail {
        padding: 24px !important;
    }
    
    .job-skill-widget {
        padding: 24px !important;
    }
}

/* Job Detail Sections - Modern Design */
.job-detail {
    position: relative;
}

.job-detail h4 {
    position: relative;
}

/* Related Jobs Grid */
.related-jobs .job-block {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .job-block-seven.at-jsv7 .job-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-jobs > div:first-child {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ANA SAYFA MODERN TASARIM İYİLEŞTİRMELERİ
   ============================================ */

/* Öne Çıkan İş İlanları - Margin düzenlemesi */
.job-section .job-block {
    margin-bottom: 0;
}

.job-section .row > div {
    margin-bottom: 24px;
}

/* Popüler İş Kategorileri - Margin düzenlemesi */
.job-categories .row > div {
    margin-bottom: 24px;
}

/* İşverenler ve Adaylar Banner Responsive */
@media (max-width: 991px) {
    .banner-style-home22 .inner-box {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .banner-style-home22 .image {
        margin-left: 0 !important;
        margin-top: 30px !important;
    }
}

/* ============================================
   İŞ İLANLARI SAYFASI - SIDEBAR VE CONTENT BOŞLUK
   ============================================ */

/* Sidebar ve Content Column - Üstten dengeli boşluk */
.page-content .sidebar-column,
.page-content .content-column,
.page-content .filters-column {
    padding-top: 40px;
}

@media (max-width: 991px) {
    .page-content .sidebar-column,
    .page-content .content-column,
    .page-content .filters-column {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .page-content .sidebar-column,
    .page-content .content-column,
    .page-content .filters-column {
        padding-top: 20px;
    }
}

/* ============================================
   İŞ İLANLARI SAYFASI - FİLTRE TASARIMI
   ============================================ */

/* Filtreler için ls-section stillerini uygula */
.page-content .filters-column .inner-column.pd-right {
    padding-right: 20px;
}

.page-content .filters-outer {
    position: relative;
    background: #F5F7FC;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px 30px 10px;
}

.page-content .filter-block {
    position: relative;
    margin-bottom: 30px;
}

.page-content .filter-block h4 {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 16px;
}

.page-content .filter-block .form-group {
    position: relative;
    margin-bottom: 0;
}

.page-content .filter-block input,
.page-content .filter-block select {
    width: 100%;
    height: 60px;
    padding: 14px 20px;
    padding-left: 54px;
    line-height: 30px;
    font-size: 15px;
    color: #696969;
    background: #FFFFFF;
    box-shadow: none;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    transition: all 300ms ease;
}

.page-content .filter-block input:focus,
.page-content .filter-block select:focus {
    outline: none;
    border-color: #1967D2;
}

.page-content .filter-block .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -15px;
    font-size: 18px;
    color: #696969;
    pointer-events: none;
    z-index: 1;
}

.page-content .filter-block .theme-btn.btn-style-two {
    background: #FFFFFF;
    color: #1967D2;
    border: 1px solid #1967D2;
}

.page-content .filter-block .theme-btn.btn-style-two:hover {
    background: #1967D2;
    color: #FFFFFF;
}

/* ============================================
   DASHBOARD RESPONSIVE TASARIM - TAM ADAPTİF
   ============================================ */

/* Dashboard Genel Yapı - Desktop */
.page-wrapper.dashboard {
    position: relative;
    background-color: #F5F7FC;
    min-height: 100vh;
    padding-left: 365px !important; /* Override mevcut CSS */
    transition: padding-left 0.3s ease;
}

/* Mobilde sadece menü toggle – logo sidebar’da */
.dashboard-mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    z-index: 101;
}

/* Mobil header: 1366px ve altında göster; üstünde gizle */
@media (min-width: 1367px) {
    .dashboard-mobile-header {
        display: none;
    }
}

.dashboard-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: #f5f7fc;
    border-radius: 8px;
    cursor: pointer;
    color: #202124;
    font-size: 20px;
    transition: background 0.2s, color 0.2s;
}

.dashboard-mobile-toggle:hover {
    background: #e8ecf1;
    color: #1967D2;
}

/* User Sidebar – logo üstte, menü, siteye dön altta */
.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 365px;
    padding-top: 0;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
    z-index: 100;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    padding: 10px 24px 20px;
}

.sidebar-logo img {
    height: 90px;
    width: auto;
}

/* Sidebar profil alanı – logo altında, solda fotoğraf sağda ad soyad, altında Profilim / Çıkış yap */
.sidebar-profile {
    padding: 20px 24px;
    margin: 0 12px 12px;
    background: linear-gradient(135deg, rgba(25, 103, 210, 0.08) 0%, rgba(25, 103, 210, 0.04) 100%);
    border: 1px solid rgba(25, 103, 210, 0.15);
    border-radius: 0;
}

.sidebar-profile-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-profile-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(25, 103, 210, 0.3);
    background: #fff;
}

.sidebar-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-profile-avatar > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-profile-content {
    flex: 1;
    min-width: 0;
}

.sidebar-profile-name {
    font-size: 15px;
    font-weight: 600;
    color: #1967D2;
    margin-bottom: 10px;
    line-height: 1.3;
    word-break: break-word;
}

.sidebar-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sidebar-profile-btn.profile-link {
    background: #1967D2;
    color: #fff;
    border: 1px solid #1967D2;
}

.sidebar-profile-btn.profile-link:hover {
    background: #1557b0;
    color: #fff;
    border-color: #1557b0;
}

.sidebar-profile-btn.logout-btn {
    background: transparent;
    color: #1967D2;
    border: 1px solid rgba(25, 103, 210, 0.4);
}

.sidebar-profile-btn.logout-btn:hover {
    background: rgba(25, 103, 210, 0.1);
    color: #1557b0;
    border-color: #1967D2;
}

.sidebar-profile-btn i {
    font-size: 14px;
}

/* Sidebar "Siteye Dön" – pasif, dashboard’a uyumlu */
.sidebar-site-links {
    padding: 12px 20px 14px;
    margin: 0 12px 12px;
    background: #f8f9fb;
    border-radius: 8px;
    border: none;
}

.sidebar-site-links .title {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.sidebar-site-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-site-links li {
    margin-bottom: 2px;
}

.sidebar-site-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-site-links a:hover {
    background: #eef1f5;
    color: #4b5563;
}

.sidebar-site-links a i {
    font-size: 13px;
    width: 16px;
    text-align: center;
    opacity: 0.6;
}

/* User Dashboard Content – desktop: topbar yok, sidebar solda */
.user-dashboard {
    padding: 40px 48px 48px;
    padding-top: 40px;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    transition: margin-left 0.3s ease;
    background: #F5F7FC;
    box-sizing: border-box;
}

.user-dashboard .main-box {
    max-width: none;
    width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.user-dashboard .auto-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Form sayfalarında içeriğin taşmaması için */
.user-dashboard .dashboard-content {
    min-height: 0;
    overflow: visible;
}

.user-dashboard .dashboard-outer {
    background: transparent;
    width: 100%;
    max-width: none;
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dashboard-show .sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Dashboard Show State */
.dashboard-show .user-sidebar {
    transform: translateX(0);
}

/* 1366px ve altı: sidebar gizli, içerik tam genişlik, mobil header görünür */
@media (max-width: 1366px) {
    .page-wrapper.dashboard {
        padding-left: 0 !important;
    }

    .user-sidebar {
        transform: translateX(-100%);
        width: 320px;
        top: 52px;
        bottom: 0;
        z-index: 100;
    }

    .dashboard-show .user-sidebar {
        transform: translateX(0);
    }

    .user-dashboard {
        margin-left: 0;
        width: 100%;
        padding: 24px 20px 32px;
        padding-top: calc(52px + 24px);
        max-height: calc(100vh - 52px);
    }

    .user-dashboard .main-box {
        max-width: none;
        width: 100%;
        padding: 30px 20px;
    }

    .user-dashboard .auto-container {
        max-width: none;
        width: 100%;
        padding: 0;
    }

    .dashboard .dashboard-outer {
        padding: 0;
    }

    .dashboard .upper-title-box {
        margin-bottom: 30px;
    }

    .dashboard .upper-title-box h3 {
        font-size: 24px;
    }
}

/* Tablet (991px ve altı) – ek küçük ekran ayarları */
@media (max-width: 991px) {
    .user-sidebar {
        width: 320px;
        top: 52px;
    }

    .user-dashboard {
        padding: 24px 20px 32px;
        padding-top: calc(52px + 24px);
    }

    .user-dashboard .main-box {
        padding: 30px 20px;
    }

    .dashboard .upper-title-box h3 {
        font-size: 24px;
    }
}

/* Mobil (767px ve altı) */
@media (max-width: 767px) {
    .user-sidebar {
        width: 280px;
        top: 52px;
    }

    .sidebar-logo {
        padding: 20px 20px 16px;
    }

    .sidebar-logo img {
        height: 28px;
    }

    .user-dashboard {
        padding: 20px 16px 24px;
        padding-top: calc(52px + 20px);
    }

    .user-dashboard .main-box {
        max-width: none;
        width: 100%;
        padding: 20px 15px;
        border-radius: 8px;
    }

    .user-dashboard .auto-container {
        max-width: none;
        width: 100%;
        padding: 0;
    }

    .dashboard .dashboard-outer {
        padding: 0;
    }

    .dashboard .upper-title-box {
        margin-bottom: 25px;
    }

    .dashboard .upper-title-box h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .dashboard .upper-title-box .text {
        font-size: 14px;
    }

    /* UI Items - Mobil */
    .ui-item {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 20px;
        margin-bottom: 20px;
    }

    .ui-item .icon {
        margin-bottom: 15px;
    }

    .ui-item .right {
        text-align: left;
        width: 100%;
    }

    /* Dashboard Content Cards */
    .dashboard .ls-outer,
    .dashboard .job-block,
    .dashboard .candidate-block {
        margin-bottom: 20px;
    }

    /* Dashboard Forms - Mobil */
    .dashboard .default-form .form-group {
        margin-bottom: 20px;
    }

    .dashboard .default-form .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .dashboard .default-form .form-group input,
    .dashboard .default-form .form-group select,
    .dashboard .default-form .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Çok Küçük Ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .user-sidebar {
        width: 100%;
        max-width: 320px;
        top: 52px;
    }

    .sidebar-logo img {
        height: 26px;
    }

    .user-dashboard {
        padding: 16px 12px 20px;
        padding-top: calc(52px + 16px);
    }

    .user-dashboard .main-box {
        max-width: none;
        width: 100%;
        padding: 16px 12px;
    }

    .dashboard .dashboard-outer {
        padding: 0;
    }

    .dashboard .upper-title-box h3 {
        font-size: 18px;
    }

    .ui-item {
        padding: 15px;
    }

    .ui-item h4 {
        font-size: 24px;
    }

    .ui-item p {
        font-size: 14px;
    }

    .ui-item .icon {
        width: 50px;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
    }
}

/* Dashboard Sidebar Navigation - Responsive */
.user-sidebar .sidebar-inner {
    padding: 0 0 20px;
}

.user-sidebar .navigation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-sidebar .navigation li {
    margin: 0;
    padding: 0;
}

.user-sidebar .navigation li a,
.user-sidebar .navigation li button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #696969;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.user-sidebar .navigation li a i,
.user-sidebar .navigation li button i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.user-sidebar .navigation li:hover a,
.user-sidebar .navigation li:hover button {
    background: #f5f7fc;
    color: #1967D2;
}

.user-sidebar .navigation li.active a,
.user-sidebar .navigation li.active button {
    background: rgba(25, 103, 210, 0.1);
    color: #1967D2;
    font-weight: 600;
    border-left: 3px solid #1967D2;
}

@media (max-width: 767px) {
    .user-sidebar .sidebar-inner {
        padding: 0 0 15px;
    }

    .sidebar-profile {
        padding: 14px 16px;
        margin: 0 10px 10px;
    }

    .sidebar-profile-avatar {
        width: 46px;
        height: 46px;
    }

    .sidebar-profile-name {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .sidebar-profile-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .sidebar-site-links {
        padding: 10px 16px 12px;
        margin: 0 10px 10px;
    }

    .sidebar-site-links .title {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .sidebar-site-links a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .user-sidebar .navigation li a,
    .user-sidebar .navigation li button {
        padding: 12px 15px;
        font-size: 14px;
    }

    .user-sidebar .navigation li a i,
    .user-sidebar .navigation li button i {
        font-size: 16px;
        width: 18px;
        margin-right: 10px;
    }
}

/* Sidebar Skills Percentage - Responsive */
.user-sidebar .skills-percentage {
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
}

.user-sidebar .skills-percentage h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #202124;
}

.user-sidebar .skills-percentage p {
    font-size: 13px;
    color: #696969;
    margin-bottom: 15px;
    line-height: 1.5;
}

.user-sidebar .skills-percentage .profile-completion-link {
    color: #1967D2;
    font-weight: 500;
    text-decoration: none;
}

.user-sidebar .skills-percentage .profile-completion-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .user-sidebar .skills-percentage {
        padding: 15px;
    }

    .user-sidebar .skills-percentage .pie-graph {
        display: flex;
        justify-content: center;
    }

    .user-sidebar .skills-percentage .graph-outer {
        transform: scale(0.8);
    }
}

/* Dashboard Content Responsive */
.dashboard .dashboard-outer {
    position: relative;
    padding: 0;
    transition: padding 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Dashboard grid – kayma olmaması için flex + box-sizing */
.dashboard .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.dashboard .row > [class*="col-"] {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

/* İstatistik kartları satırında eşit yükseklik ve boşluk */
.dashboard .dashboard-stats-row > [class*="col-"] {
    margin-bottom: 20px;
}

.dashboard .dashboard-stats-row .ui-item {
    margin-bottom: 0;
    height: 100%;
    min-height: 130px;
}

/* Dashboard Forms and Tables - Responsive */
.dashboard .default-form,
.dashboard .form-widget,
.dashboard table {
    width: 100%;
    overflow-x: auto;
}

.dashboard table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .dashboard table {
        display: table;
        overflow-x: visible;
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .dashboard .dashboard-outer {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .dashboard .dashboard-outer {
        padding: 0;
    }

    .dashboard .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .dashboard .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Dashboard Tables - Mobilde scroll */
    .dashboard table {
        font-size: 14px;
    }

    .dashboard table th,
    .dashboard table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .dashboard .dashboard-outer {
        padding: 0;
    }

    .dashboard .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .dashboard .row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Copyright Text - Responsive */
.copyright-text {
    text-align: center;
    padding: 20px;
    color: #696969;
    font-size: 14px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .copyright-text {
        padding: 15px;
        font-size: 12px;
        margin-top: 30px;
    }
}

/* ============================================
   İŞ İLANLARI SAYFASI - COMPANY LOGO DÜZENLEMESİ
   ============================================ */

/* Company Logo - Başlığın altına girmemesi için düzenleme */
.job-block .company-logo {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
}

.job-block .company-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.job-block .company-logo .logo-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1967D2 !important;
    background: #e3f2fd !important;
    border-radius: 8px !important;
}

/* Content alanının logo için padding'i korunuyor */
.job-block .content {
    padding-left: 68px !important;
    min-height: 50px !important;
}

/* Başlık ile logo arasındaki hizalama */
.job-block h4 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 767px) {
    .job-block .company-logo {
        width: 45px !important;
        height: 45px !important;
    }
    
    .job-block .content {
        padding-left: 60px !important;
    }
    
    .job-block .company-logo .logo-placeholder {
        font-size: 18px !important;
    }
}

/* ============================================
   PROFİL SAYFASI – Derli toplu form (pf-*)
   ============================================ */
.profile-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    gap: 12px;
}

.profile-loading .spinner-border { width: 2.5rem; height: 2.5rem; }
.profile-loading p { margin: 0; font-size: 14px; color: #696969; }

.pf-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 24px;
    max-width: 100%;
    overflow: hidden;
}

.pf-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.pf-alert--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.pf-alert--error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.pf-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-block {
    margin-bottom: 20px;
}

.pf-block:last-of-type { margin-bottom: 0; }

.pf-block-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1967D2;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(25, 103, 210, 0.15);
}

.pf-block-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pf-row--photo {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.pf-photo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.pf-photo-preview {
    flex-shrink: 0;
}

.pf-photo-preview img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.pf-photo-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.pf-photo-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #1967D2;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.pf-photo-btn:hover { background: #1557b0; }

.pf-photo-name {
    font-size: 12px;
    color: #6b7280;
}

.pf-photo-hint {
    font-size: 11px;
    color: #9ca3af;
}

.pf-fields {
    display: grid;
    gap: 12px 20px;
    flex: 1;
    min-width: 0;
}

.pf-fields--g1 { grid-template-columns: 1fr; }
.pf-fields--g2 { grid-template-columns: repeat(2, 1fr); }
.pf-fields--g4 { grid-template-columns: repeat(4, 1fr); }

.pf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.pf-required { color: #dc2626; }

.pf-hint {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

.pf-form input,
.pf-form select,
.pf-form textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pf-form input:focus,
.pf-form select:focus,
.pf-form textarea:focus {
    outline: none;
    border-color: #1967D2;
    box-shadow: 0 0 0 2px rgba(25, 103, 210, 0.12);
}

.pf-form textarea {
    resize: vertical;
    min-height: 64px;
}

.pf-input-readonly {
    background: #f9fafb !important;
    color: #6b7280 !important;
    cursor: default;
}

.pf-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pf-actions .theme-btn {
    padding: 10px 24px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .pf-fields--g4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .pf-card { padding: 18px 16px; }
    .pf-row--photo { flex-direction: column; gap: 16px; padding-bottom: 16px; margin-bottom: 16px; }
    .pf-fields--g2,
    .pf-fields--g4 { grid-template-columns: 1fr; }
    .pf-photo-preview img { width: 72px; height: 72px; }
    .pf-block { margin-bottom: 16px; }
    .pf-block-title { margin-bottom: 10px; font-size: 11px; }
}

/* ============================================
   ÖZGEÇMİŞ SAYFASI – rf-* (resume form / list)
   ============================================ */
.rf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.rf-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-title { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
    color: #202124; 
}

.rf-count {
    font-size: 14px;
    color: #696969;
    font-weight: 400;
}

.rf-filter,
.rf-filters {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rf-filter .chosen-select {
    min-width: 150px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #fff;
    cursor: pointer;
}

.rf-filter .chosen-select:focus {
    outline: none;
    border-color: #1967D2;
    box-shadow: 0 0 0 3px rgba(25, 103, 210, 0.1);
}

.rf-content {
    margin-top: 0;
}

.rf-empty {
    text-align: center;
    padding: 48px 24px;
}

.rf-empty p { margin: 0 0 8px; color: #374151; }
.rf-empty-hint { font-size: 14px; color: #6b7280 !important; margin-bottom: 20px !important; }
.rf-empty .theme-btn { margin-top: 8px; }

.rf-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
}

.rf-item:last-child { margin-bottom: 0; }

.rf-item-main { flex: 1; min-width: 0; }
.rf-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(25, 103, 210, 0.12);
    color: #1967D2;
}

.rf-item-meta {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    gap: 16px;
}

.rf-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.rf-btn--edit {
    background: #1967D2;
    color: #fff;
}

.rf-btn--edit:hover { background: #1557b0; }

.rf-btn--default {
    background: #f3f4f6;
    color: #374151;
}

.rf-btn--default:hover { background: #e5e7eb; color: #1967D2; }

.rf-btn--danger {
    background: #fef2f2;
    color: #dc2626;
}

.rf-btn--danger:hover { background: #fee2e2; }

.rf-btn--ghost {
    background: transparent;
    color: #6b7280;
}

.rf-btn--ghost:hover { background: #f3f4f6; color: #202124; }

.rf-delete-confirm { display: flex; gap: 6px; }

.rf-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.rf-form .pf-block { margin-bottom: 24px; }

.rf-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.rf-block-head .pf-block-title { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.rf-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #1967D2;
    background: rgba(25, 103, 210, 0.08);
    border: 1px solid rgba(25, 103, 210, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.rf-add-btn:hover { background: rgba(25, 103, 210, 0.15); }

.rf-repeat { display: flex; flex-direction: column; gap: 16px; }

.rf-repeat-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.rf-repeat-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rf-repeat-fields input,
.rf-repeat-fields textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.rf-repeat-fields input:focus,
.rf-repeat-fields textarea:focus {
    outline: none;
    border-color: #1967D2;
    box-shadow: 0 0 0 2px rgba(25, 103, 210, 0.12);
}

.rf-repeat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.rf-remove-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #fef2f2;
    color: #dc2626;
    cursor: pointer;
    transition: background 0.2s;
}

.rf-remove-btn:hover { background: #fee2e2; }

.rf-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.rf-check input { width: auto; }

.pf-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rf-file-info {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rf-file-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.rf-file-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #1967D2;
    background: rgba(25, 103, 210, 0.08);
    border: 1px solid rgba(25, 103, 210, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    width: fit-content;
}

.rf-file-link:hover {
    background: rgba(25, 103, 210, 0.15);
    color: #1557b0;
}

.rf-file-hint {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* Status badges */
.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status--pending {
    background: #fef3c7;
    color: #92400e;
}

.status--reviewed {
    background: #dbeafe;
    color: #1e40af;
}

.status--shortlisted {
    background: #d1fae5;
    color: #065f46;
}

.status--rejected {
    background: #fee2e2;
    color: #991b1b;
}

.status--accepted {
    background: #d1fae5;
    color: #065f46;
}

.status--active {
    background: #d1fae5;
    color: #065f46;
}

.status--inactive {
    background: #f3f4f6;
    color: #6b7280;
}

/* Başvurularım Sayfası - İş İlanı Öğesi */
.app-job-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
    min-width: 0;
}

.app-job-logo {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.app-job-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-job-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1967D2 0%, #00386f 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.app-job-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-job-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.app-job-content h4 a {
    color: #202124;
    text-decoration: none;
    transition: color 0.2s;
}

.app-job-content h4 a:hover {
    color: #1967D2;
}

.app-job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.app-job-info > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #696969;
    line-height: 1.5;
}

.app-job-info .icon {
    font-size: 14px;
    color: #999;
}

.app-job-company,
.app-job-location,
.app-job-category,
.app-job-salary {
    white-space: nowrap;
}

.app-date {
    display: flex;
    align-items: center;
}

.app-date-text {
    font-size: 14px;
    color: #202124;
    white-space: nowrap;
}

/* Status badge improvements for table */
.manage-job-table .status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Status badge in alerts (JobSingle page) */
.alert .status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Responsive for applied jobs */
@media (max-width: 991px) {
    .app-job-item {
        gap: 12px;
    }
    
    .app-job-logo {
        width: 50px;
        height: 50px;
    }
    
    .app-job-logo-placeholder {
        font-size: 20px;
    }
    
    .app-job-content h4 {
        font-size: 15px;
    }
    
    .app-job-info {
        gap: 8px;
    }
    
    .app-job-info > span {
        font-size: 12px;
    }
}

/* Company Widget Override - Remove padding-left that breaks design */
.company-widget.at-jsv6 .company-title {
    padding-left: 0 !important;
    min-height: auto !important;
    padding-top: 0 !important;
    position: relative !important;
}

.company-widget.at-jsv6 .company-logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    margin: 0 auto 20px !important;
}

/* Job Overview - Fix icon alignment and prevent style.css interference */
.sidebar-widget.at-jsv7 .job-overview.at-sv5 {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 {
    position: relative !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
    border: none !important;
    border-bottom: none !important;
    padding-left: 16px !important;
    position: relative !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li > div:first-child {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    /* Gradient background should be preserved from inline styles - don't override */
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li .icon {
    font-size: 20px !important;
    line-height: 1 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    background: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    text-align: center !important;
}

/* Override style.css .job-overview.at-sv5 .icon rules */
.sidebar-widget.at-jsv7 .job-overview.at-sv5 li > div:first-child .icon {
    background-color: transparent !important;
    background: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    height: 100% !important;
    line-height: 1 !important;
    position: relative !important;
    text-align: center !important;
    width: 100% !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li > div:last-child {
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li h5 {
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.sidebar-widget.at-jsv7 .job-overview.at-sv5 li span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .rf-head {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rf-filters {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .rf-filters select {
        width: 100%;
        margin-right: 0 !important;
    }
    
    .app-job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .app-job-logo {
        width: 60px;
        height: 60px;
    }
    
    .app-job-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .app-job-info > span {
        font-size: 12px;
    }
}

/* Bookmark button styles - override default styles */
.bookmark-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1;
}

/* Override style.css defaults for bookmark-btn when needed */
.job-block .bookmark-btn {
    background: #ffffff;
}

.bookmark-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.bookmark-btn .flaticon-bookmark {
    font-size: 20px;
    color: #696969;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1;
    position: relative;
}

/* Active state - change color only, keep original icon shape */
.bookmark-btn.active .flaticon-bookmark,
.bookmark-btn .flaticon-bookmark.text {
    color: var(--ekip-orange, #ff6b35) !important;
}

/* Ensure the ::before pseudo-element (icon) uses the correct color */
.bookmark-btn.active .flaticon-bookmark::before,
.bookmark-btn .flaticon-bookmark.text::before {
    color: var(--ekip-orange, #ff6b35) !important;
}

/* ============================================
   FAVORİ İLANLAR TABLOSU – fav-job-*
   ============================================ */
.fav-job-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    min-width: 0;
    max-width: 100%;
}

.fav-job-logo {
    flex-shrink: 0;
}

.fav-job-content {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.fav-job-content h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fav-job-content h4 a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fav-job-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-job-logo {
    position: relative;
}

.fav-job-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.fav-job-logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1967D2 0%, #00386f 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 10px;
    z-index: 0;
}

.fav-job-content {
    flex: 1;
    min-width: 0;
}

.fav-job-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.fav-job-content h4 a {
    color: #202124;
    text-decoration: none;
    transition: color 0.2s;
}

.fav-job-content h4 a:hover {
    color: #1967D2;
}

.fav-job-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fav-job-info li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #696969;
    margin: 0;
    padding: 0;
}

.fav-job-info li .icon {
    font-size: 14px;
    color: #696969;
    line-height: 1;
}

/* Table outer - prevent horizontal scroll */
.pf-card .table-outer {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

.pf-card .table-outer::-webkit-scrollbar {
    height: 8px;
}

.pf-card .table-outer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.pf-card .table-outer::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.pf-card .table-outer::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Manage job table düzenlemeleri - override style.css min-width */
.pf-card .manage-job-table,
.pf-card .table-outer .manage-job-table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse;
    min-width: 0 !important;
    table-layout: fixed;
}

.manage-job-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    min-width: 0;
    table-layout: fixed;
}

.manage-job-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #202124;
    border-bottom: 2px solid #e8ecf1;
    background: #f9fafb;
}

.manage-job-table tbody td {
    padding: 20px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #e8ecf1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.manage-job-table tbody td:first-child {
    width: 40%;
    max-width: 40%;
    min-width: 0;
}

.manage-job-table tbody td:nth-child(2) {
    width: 20%;
    max-width: 20%;
    white-space: nowrap;
}

.manage-job-table tbody td:nth-child(3) {
    width: 15%;
    max-width: 15%;
    white-space: nowrap;
}

.manage-job-table tbody td:last-child {
    width: 25%;
    max-width: 25%;
    white-space: nowrap;
}

.manage-job-table thead th:first-child {
    width: 40%;
}

.manage-job-table thead th:nth-child(2) {
    width: 20%;
}

.manage-job-table thead th:nth-child(3) {
    width: 15%;
}

.manage-job-table thead th:last-child {
    width: 25%;
}

.manage-job-table tbody tr:hover {
    background: #f9fafb;
}

.manage-job-table tbody tr:last-child td {
    border-bottom: none;
}

/* Option buttons */
.option-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.option-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.option-list li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.option-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(25, 103, 210, 0.07);
    color: #1967D2;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    line-height: 1;
    pointer-events: auto !important;
    z-index: 10;
}

.option-btn span {
    pointer-events: none;
    z-index: 11;
    position: relative;
}

/* Ensure Link works */
a.option-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

a.option-btn:hover {
    text-decoration: none !important;
}

/* Tooltip support - use existing style.css structure */
.option-list li .option-btn:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 10px;
    background: #202124;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    content: attr(data-text);
    white-space: nowrap;
    padding: 5px 15px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    pointer-events: none !important;
    z-index: 1000;
}

.option-list li .option-btn:after {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #202124;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    pointer-events: none !important;
    z-index: 1001;
}

.option-list li .option-btn:hover:before,
.option-list li .option-btn:hover:after {
    opacity: 1;
    visibility: visible;
}

.option-btn:hover {
    background: #1967D2;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Ensure Link works properly */
.option-btn[href] {
    pointer-events: auto;
    cursor: pointer;
}

.option-btn[href]:hover {
    text-decoration: none;
}

.option-btn--delete {
    background: #fef2f2;
    color: #dc2626;
}

.option-btn--delete:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.option-btn--danger {
    background: #dc2626;
    color: #fff;
}

.option-btn--danger:hover {
    background: #b91c1c;
}

.option-btn--cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.option-btn--cancel:hover {
    background: #e5e7eb;
    color: #374151;
}


/* Desktop: Responsive table without forced min-width */
@media (min-width: 992px) {
    .pf-card .table-outer {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .pf-card .manage-job-table {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        table-layout: fixed;
    }
}

@media (max-width: 991px) {
    .manage-job-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .manage-job-table thead,
    .manage-job-table tbody,
    .manage-job-table tr,
    .manage-job-table td,
    .manage-job-table th {
        display: block;
    }
    
    .manage-job-table thead {
        display: none;
    }
    
    .manage-job-table tbody tr {
        margin-bottom: 16px;
        border: 1px solid #e8ecf1;
        border-radius: 10px;
        padding: 16px;
        background: #fff;
    }
    
    .manage-job-table tbody td {
        padding: 8px 0;
        border: none;
        text-align: left;
    }
    
    .manage-job-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #202124;
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        text-transform: uppercase;
    }
    
    .fav-job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .fav-job-logo {
        width: 50px;
        height: 50px;
    }
    
    .option-box {
        justify-content: flex-start;
        margin-top: 12px;
    }
}

/* İş Alarmı Tablosu - alert-item */
.alert-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alert-item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    line-height: 1.4;
}

.alert-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #696969;
}

.alert-location .icon {
    font-size: 13px;
    color: #696969;
}

.alert-criteria {
    font-size: 13px;
    color: #696969;
    line-height: 1.6;
    max-width: 500px;
    word-wrap: break-word;
}

.alert-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alert-criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.criteria-label {
    font-weight: 600;
    color: #202124;
    flex-shrink: 0;
    min-width: 100px;
}

.criteria-value {
    color: #696969;
    flex: 1;
    word-break: break-word;
}

.criteria-empty {
    color: #999;
    font-style: italic;
}

/* İş Alarmı Tablosu - Sütun genişlikleri */
.manage-job-table thead th:nth-child(1),
.manage-job-table tbody td:nth-child(1) {
    width: 25%;
    min-width: 200px;
}

.manage-job-table thead th:nth-child(2),
.manage-job-table tbody td:nth-child(2) {
    width: 35%;
    min-width: 250px;
}

.manage-job-table thead th:nth-child(3),
.manage-job-table tbody td:nth-child(3) {
    width: 12%;
    min-width: 80px;
}

.manage-job-table thead th:nth-child(4),
.manage-job-table tbody td:nth-child(4) {
    width: 15%;
    min-width: 120px;
}

.manage-job-table thead th:nth-child(5),
.manage-job-table tbody td:nth-child(5) {
    width: 13%;
    min-width: 100px;
}

/* Başvurularım Tablosu - Sütun genişlikleri */
.pf-card .manage-job-table thead th:nth-child(1),
.pf-card .manage-job-table tbody td:nth-child(1) {
    width: 45%;
    min-width: 300px;
}

.pf-card .manage-job-table thead th:nth-child(2),
.pf-card .manage-job-table tbody td:nth-child(2) {
    width: 15%;
    min-width: 120px;
}

.pf-card .manage-job-table thead th:nth-child(3),
.pf-card .manage-job-table tbody td:nth-child(3) {
    width: 15%;
    min-width: 100px;
}

.pf-card .manage-job-table thead th:nth-child(4),
.pf-card .manage-job-table tbody td:nth-child(4) {
    width: 10%;
    min-width: 80px;
}

@media (max-width: 767px) {
    .rf-repeat-row { grid-template-columns: 1fr 1fr; }
    .rf-item { flex-direction: column; align-items: stretch; }
    .rf-item-actions { justify-content: flex-start; }
    
    .fav-job-content h4 {
        font-size: 14px;
    }
    
    .fav-job-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .fav-job-info li {
        font-size: 13px;
    }
    
    .alert-item h6 {
        font-size: 14px;
    }
    
    .alert-criteria {
        font-size: 12px;
        max-width: 100%;
    }
    
    .alert-criteria-list {
        gap: 4px;
    }
    
    .alert-criteria-list li {
        flex-direction: column;
        gap: 2px;
    }
    
    .criteria-label {
        min-width: auto;
        font-size: 12px;
    }
    
    .criteria-value {
        font-size: 12px;
    }
}

/* ===== EKİP – Armata font (tüm arayüz, paneller dahil) ===== */
body,
#root,
.main-header,
.user-dashboard,
.user-sidebar,
.dashboard-outer,
.page-wrapper,
.dashboard-content,
.auto-container,
.main-box,
.nav-outer,
.outer-box,
.navigation a,
.sidebar-profile,
.sidebar-site-links,
.theme-btn,
.btn,
input,
select,
textarea,
label,
h1, h2, h3, h4, h5, h6,
.sec-title,
.upper-title-box,
.messages-page,
.chat-widget,
.card,
.table,
.form-control,
.form-label,
.form-select,
.alert,
.badge,
.modal-title,
.dashboard-header {
    font-family: 'Armata', sans-serif !important;
}