/* Günlük İş İlanları Sitesi CSS - Modern Tasarım */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.header-left {
    flex: 1;
}

.logo-section .main-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 4px;
}

.logo-section .subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.main-nav {
    margin-top: 10px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-right: 20px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.header-center {
    flex: 0 0 auto;
}

.stats-info {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info {
    margin-right: 16px;
    text-align: right;
}

.welcome-text {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.company-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn.primary {
    background: rgba(52, 152, 219, 0.3);
    color: white;
}

.header-btn.primary:hover {
    background: rgba(52, 152, 219, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.header-btn.success {
    background: rgba(39, 174, 96, 0.3);
    color: white;
}

.header-btn.success:hover {
    background: rgba(39, 174, 96, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.header-btn.danger {
    background: rgba(231, 76, 60, 0.3);
    color: white;
}

.header-btn.danger:hover {
    background: rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.header-btn.warning {
    background: rgba(243, 156, 18, 0.3);
    color: white;
}

.header-btn.warning:hover {
    background: rgba(243, 156, 18, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-size: 13px;
}

/* Ana Container */
.container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateY(-1px);
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Arama ve Filtre Alanı */
.search-filter-area {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(189, 195, 199, 0.3);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    min-height: 120px;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.search-group input,
.search-group select {
    padding: 14px 16px;
    border: 2px solid rgba(189, 195, 199, 0.5);
    border-radius: 12px;
    font-size: 14px;
    width: 220px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-weight: 500;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

.search-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    font-family: inherit;
    letter-spacing: 0.3px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* İçerik Alanı (%80 yükseklik) */
.content-area {
    height: calc(100vh - 160px); /* Header ve search alanını çıkar */
    display: flex;
}

/* İş İlanları Listesi (%40 genişlik) */
.job-list-area {
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(189, 195, 199, 0.3);
    overflow-y: auto;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 152, 219, 0.3) rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar for Webkit browsers */
.job-list-area::-webkit-scrollbar {
    width: 6px;
}

.job-list-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.job-list-area::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.3);
    border-radius: 3px;
}

.job-list-area::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.5);
}

.job-item {
    border: 1px solid rgba(236, 240, 241, 0.6);
    margin-bottom: 16px;
    padding: 20px;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.job-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.job-item:hover::before {
    left: 100%;
}

.job-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-item.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.3);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #2c3e50;
    letter-spacing: -0.2px;
}

.job-item.active .job-title {
    color: white;
}

.job-company {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.job-item.active .job-company {
    color: rgba(255, 255, 255, 0.9);
}

.job-location {
    font-size: 13px;
    color: #95a5a6;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}



.job-item.active .job-location {
    color: rgba(255, 255, 255, 0.8);
}

.job-salary {
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 8px;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    display: inline-block;
}

.job-item.active .job-salary {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
}

.job-date {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 12px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}

.job-item.active .job-date {
    color: rgba(255, 255, 255, 0.7);
}

/* İlan Detay Alanı (%60 genişlik) */
.job-detail-area {
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    overflow-y: auto;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 152, 219, 0.3) rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar for Job Detail Area */
.job-detail-area::-webkit-scrollbar {
    width: 6px;
}

.job-detail-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.job-detail-area::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.3);
    border-radius: 3px;
}

.job-detail-area::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.5);
}

.job-detail {
    display: none;
}

.job-detail.active {
    display: block;
}

/* Bilgisayar görünümünde accordion detaylarını gizle */
.job-accordion-detail {
    display: none;
}

.detail-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
    border-bottom: 3px solid transparent;
   
    border-image: linear-gradient(90deg, #3498db, #9b59b6) 1;
    padding-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.detail-company {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.detail-location {
    font-size: 18px;
    color: #95a5a6;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-location::before {
    content: '📍';
    font-size: 16px;
}

.detail-salary {
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.detail-dates {
    background: linear-gradient(135deg, rgba(236, 240, 241, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 15px;
    border: 1px solid rgba(189, 195, 199, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.detail-content {
    line-height: 1.7;
    font-size: 15px;
    white-space: pre-line;
    color: #34495e;
    font-weight: 400;
    letter-spacing: 0.1px;
}

/* İŞKUR Uyarı Metni */
.legal-notice {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    margin-top: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
    font-weight: 500;
    line-height: 1.5;
    backdrop-filter: blur(8px);
}

/* Boş durum mesajı */
.empty-message {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    margin-top: 60px;
    font-weight: 500;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(189, 195, 199, 0.3);
}

/* Responsive tasarım */

/* Tablet için */
@media (max-width: 1024px) {
    .header {
        padding: 20px 25px;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .logo-section .main-title {
        font-size: 26px;
    }
    
    .stats-info {
        padding: 14px 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .header-btn {
        padding: 9px 14px;
        font-size: 13px;
    }
    
    .search-filter-area {
        gap: 20px;
        padding: 20px;
    }
    
    .search-group input,
    .search-group select {
        width: 180px;
    }
}

/* Mobil için */
@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        overflow-x: hidden; /* Yatay scroll'u engelle */
    }
    
    .header {
        padding: 16px 20px;
        overflow-x: hidden; /* Header'da yatay scroll engelle */
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-left,
    .header-right {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .header-center {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-section .main-title {
        font-size: 22px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .logo-section .subtitle {
        font-size: 12px;
    }
    
    .stats-info {
        padding: 12px 16px;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
        word-wrap: break-word;
    }
    
    .auth-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .user-info {
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .header-btn {
        padding: 8px 12px;
        font-size: 12px;
        max-width: calc(50% - 4px);
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .btn-icon {
        font-size: 14px;
    }
    
    .btn-text {
        font-size: 11px;
    }
    
    .container {
        flex: 1;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .search-filter-area {
        min-height: 200px;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
    }
    
    /* Mobil için form düzeni */
    .search-filter-area form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        align-items: center;
    }
    
    .search-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }
    
    .search-group label {
        font-size: 15px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
    }
    
    .search-group input,
    .search-group select {
        width: 100%;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
        padding: 16px 18px;
        font-size: 15px;
        border-radius: 14px;
        border: 2px solid rgba(189, 195, 199, 0.4);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
    }
    
    .search-group input:focus,
    .search-group select:focus {
        border-color: #3498db;
        background: white;
        box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
        transform: translateY(-1px);
    }
    
    .search-btn {
        width: 100%;
        max-width: none;
        margin: 10px 0 0 0;
        box-sizing: border-box;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }
    
    .search-btn:hover {
        background: linear-gradient(135deg, #2980b9 0%, #1f5f99 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    }
    
    /* Temizle butonu için ek stil */
    .search-filter-area a.search-btn {
        background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
        text-decoration: none;
        display: inline-block;
        text-align: center;
        margin-top: 10px;
    }
    
    .search-filter-area a.search-btn:hover {
        background: linear-gradient(135deg, #7f8c8d 0%, #6c7b7d 100%);
    }
    
    /* Mobil Accordion Sistemi */
    .content-area {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 180px);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .job-list-area,
    .job-detail-area {
        width: 100%;
        height: auto;
        border-right: none;
        padding: 0;
        background: transparent;
        overflow: visible;
        max-width: 100%;
    }
    
    .job-list-area {
        border-bottom: none;
        padding: 15px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .job-detail-area {
        display: none; /* Mobilde ayrı detay alanı kullanmıyoruz */
    }
    
    /* Accordion Job Item */
    .job-item {
        padding: 15px;
        margin-bottom: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(236, 240, 241, 0.6);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .job-item:hover {
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .job-item.active {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    }
    
    .job-item.active .job-title,
    .job-item.active .job-company,
    .job-item.active .job-location,
    .job-item.active .job-salary,
    .job-item.active .job-date {
        color: inherit;
    }
    
    .job-item.active .job-salary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    /* Mobilde Accordion Detay Alanını Göster */
    .job-accordion-detail {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.95);
        margin: 8px 0 0 0;
        border-radius: 0 0 12px 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(236, 240, 241, 0.6);
        border-top: none;
        backdrop-filter: blur(8px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .job-item.active .job-accordion-detail {
        max-height: 1000px;
        padding: 20px;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(52, 152, 219, 0.3);
    }
    
    .accordion-content {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease 0.1s;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }
    
    .job-item.active .accordion-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Accordion içerik stilleri */
    .accordion-detail-title {
        font-size: 20px;
        color: #2c3e50;
        margin-bottom: 12px;
        font-weight: 700;
        border-bottom: 2px solid #3498db;
        padding-bottom: 8px;
        background: linear-gradient(90deg, #3498db, #9b59b6);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% auto;
        animation: shimmer 2s ease-in-out infinite alternate;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    @keyframes shimmer {
        0% { background-position: 0% center; }
        100% { background-position: 200% center; }
    }
    
    .accordion-detail-company {
        font-size: 16px;
        color: #7f8c8d;
        margin-bottom: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .accordion-detail-company::before {
        content: '🏢';
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .accordion-detail-location {
        font-size: 14px;
        color: #95a5a6;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 500;
        word-wrap: break-word;
        max-width: 100%;
    }
    

    
    .accordion-detail-salary {
        font-size: 14px;
        color: #27ae60;
        font-weight: 600;
        margin-bottom: 12px;
        background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
        padding: 8px 12px;
        border-radius: 8px;
        display: inline-block;
        border: 1px solid rgba(39, 174, 96, 0.2);
        backdrop-filter: blur(4px);
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .accordion-detail-dates {
        background: linear-gradient(135deg, rgba(236, 240, 241, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        line-height: 1.5;
        border: 1px solid rgba(189, 195, 199, 0.3);
        backdrop-filter: blur(4px);
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .accordion-detail-content {
        line-height: 1.6;
        font-size: 14px;
        color: #34495e;
        margin-bottom: 15px;
        white-space: pre-line;
        padding: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        border-left: 3px solid #3498db;
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
    }
    
    .accordion-legal-notice {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        color: white;
        padding: 12px;
        text-align: center;
        font-size: 11px;
        border-radius: 8px;
        font-weight: 500;
        line-height: 1.4;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
        position: relative;
        overflow: hidden;
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .accordion-legal-notice::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .job-item.active .accordion-legal-notice::before {
        left: 100%;
    }
    
    /* Accordion açma/kapama ikonu */
    .job-item::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 12px;
        color: #95a5a6;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: bold;
    }
    
    .job-item {
        position: relative;
    }
    
    .job-item.active::after {
        transform: rotate(180deg);
        color: rgba(255, 255, 255, 0.8);
    }
    
    .job-item:hover::after {
        transform: scale(1.1);
    }
    
    .job-item.active:hover::after {
        transform: rotate(180deg) scale(1.1);
    }
    
    .job-title {
        font-size: 16px;
        padding-right: 30px; /* Ok ikonu için yer bırak */
        transition: all 0.3s ease;
        word-wrap: break-word;
        max-width: calc(100% - 30px);
    }
    
    .job-company,
    .job-location,
    .job-salary,
    .job-date {
        word-wrap: break-word;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    /* Mobil accordion hover efektleri */
    .job-item:active {
        transform: scale(0.98);
    }
    
    /* Accordion açılırken içerik animasyonları */
    .job-item.active .accordion-detail-title {
        animation-delay: 0.1s;
    }
    
    .job-item.active .accordion-detail-company {
        animation: slideInUp 0.4s ease 0.2s both;
    }
    
    .job-item.active .accordion-detail-location {
        animation: slideInUp 0.4s ease 0.25s both;
    }
    
    .job-item.active .accordion-detail-salary {
        animation: slideInUp 0.4s ease 0.3s both;
    }
    
    .job-item.active .accordion-detail-dates {
        animation: slideInUp 0.4s ease 0.35s both;
    }
    
    .job-item.active .accordion-detail-content {
        animation: slideInUp 0.4s ease 0.4s both;
    }
    
    .job-item.active .accordion-legal-notice {
        animation: slideInUp 0.4s ease 0.45s both;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Touch feedback for mobile */
    .job-item {
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.2);
        tap-highlight-color: rgba(52, 152, 219, 0.2);
    }
    
    .footer-links {
        gap: 20px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-links a {
        font-size: 13px;
        word-wrap: break-word;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
    .header h1 {
        font-size: 20px;
    }
    
    .search-filter-area {
        padding: 15px 10px;
    }
    
    .job-list-area,
    .job-detail-area {
        padding: 15px 10px;
    }
    
    .job-item {
        padding: 12px;
    }
    
    .job-title {
        font-size: 15px;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    .detail-content {
        font-size: 14px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer {
        padding: 20px 0;
    }
}

/* Landscape tablet için */
@media (max-width: 1024px) and (orientation: landscape) {
    .search-filter-area {
        min-height: 120px;
    }
    
    .content-area {
        flex: 1;
    }
} 