/* ===================================================================
/* Dashboard compact action buttons */
.btn-compact{padding:.25rem .6rem !important;font-size:.8rem !important;line-height:1.2;display:inline-flex;align-items:center;gap:.35rem}
   Akademik Dergi Projesi - Düzenlenmiş Ana Stil Dosyası
   ===================================================================
   1. Temel ve Genel Stiller (Base & Typography)
   2. Yardımcı Sınıflar (Utilities)
   3. Ana Yapı (Layout)
   4. Bileşenler (Components)
      - Kartlar (Cards)
      - Formlar (Forms)
      - Butonlar (Buttons)
      - Bildirimler ve Mesajlar (Alerts & Toasts)
      - Navigasyon (Navigation & Breadcrumbs)
      - Rozetler (Badges)
   5. Sayfa Özelinde Stiller (Page-Specific)
   6. Medya Sorguları (Responsive Design)
=================================================================== */

/* === 1. TEMEL VE GENEL STİLLER === */
:root {
    /* Modern Renk Paleti - Logo Uyumlu */
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #7c3aed;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    
    /* Gradient Renkler */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Metin Renkleri */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    
    /* Arka Plan Renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #edf2f7;
    --bg-glass: rgba(255, 255, 255, 0.9);
    
    /* Border ve Gölge */
    --border-radius-main: 1.5rem;
    --border-radius-small: 1rem;
    --border-radius-large: 2rem;
    --shadow-main: 0 20px 40px rgba(102, 126, 234, 0.15);
    --shadow-light: 0 8px 16px rgba(102, 126, 234, 0.1);
    --shadow-heavy: 0 25px 50px rgba(102, 126, 234, 0.2);
    
    /* Durum Renkleri */
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --error-color: #f56565;
    --info-color: #4299e1;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-dark);
    padding-top: 100px;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* === 2. YARDIMCI SINIFLAR (UTILITIES) === */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clamp-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.clamp-2 { -webkit-line-clamp: 2; }
.clamp-3 { -webkit-line-clamp: 3; }

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* === 3. ANA YAPI (LAYOUT) === */
.navbar.navbar-glass {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-bottom: 1.5px solid rgba(102, 126, 234, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border-radius: 0 0 var(--border-radius-main) var(--border-radius-main) !important;
    margin: 0 1rem !important;
    width: calc(100% - 2rem) !important;
    box-shadow: var(--shadow-light) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.navbar.navbar-glass.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.navbar.navbar-glass.navbar-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Logo Stilleri */
.navbar-brand img {
    object-fit: contain;
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.dashboard-container,
.dashboard-container,
.editors-page {
    padding: 1.5rem;
    background: var(--bg-secondary);
    min-height: 100vh;
}

footer {
    border-top: 3px solid var(--primary-color);
    background: var(--bg-primary);
    box-shadow: var(--shadow-light);
}

/* === 4. BİLEŞENLER (COMPONENTS) === */


/* --- Kartlar (Cards) --- */
.card {
    border: none;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-main);
}

.card-header {
    background: var(--primary-gradient);
    color: white;
    border-bottom: 0;
    border-radius: var(--border-radius-main) var(--border-radius-main) 0 0;
    font-weight: 600;
}

/* Cam Efektli Kart */
.glass-card,
.profile-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-main);
    border: 1px solid rgba(102, 126, 234, 0.1);
    padding: 2.2rem 2rem;
    border-radius: var(--border-radius-large) !important;
    transition: all 0.3s ease;
}

/* Profil sayfası için daha yumuşak kenarlar */
.my-profil .glass-card {
    border-radius: 2.5rem !important;
}

/* Profil düzenleme sayfası için daha yumuşak kenarlar */
.profile-card {
    border-radius: 2.5rem !important;
}

.glass-card:hover,
.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* Editör Kartı */
.editor-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    padding: 1.2rem 1rem 1rem 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.editor-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(44,62,80,0.18);
    z-index: 2;
}
.editor-card__image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.editor-card:hover .editor-card__image {
    transform: scale(1.05);
}
.editor-card__name {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.editor-card__bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1; /* Butonun altta kalmasını sağlar */
}
.editor-card .profile-pic {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    background: #f1f5f9;
    margin-bottom: 0.5rem;
}

/* --- Formlar (Forms) --- */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-control, .form-select {
    border-radius: var(--border-radius-small);
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: var(--bg-primary);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: var(--bg-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Hatalı Form Elemanları */
.is-invalid, .border-danger {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px #ffbdbd;
}

.form-error-text {
    color: #d32f2f;
    font-size: 0.9em;
    font-weight: 500;
    background: #fff6f6;
    border-top: 1px solid #f8d7da;
    padding: 0.2rem 0.7rem;
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
}

/* Özel Form Alanları */
.input-icon-group {
    position: relative;
}
.input-icon-group i {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 2;
}
.input-icon-group .form-control {
    padding-left: 2.8rem;
}

/* --- Butonlar (Buttons) --- */
.btn {
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius-small);
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-main);
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1.15rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: #6c757d;
    border: 2px solid #6c757d;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border-color: #6c757d;
    transform: translateY(-2px);
}

.btn-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px);
}

/* Modern PDF Button */
.btn-pdf-modern {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem; /* btn-sm ile aynı font-size */
    padding: 0.375rem 0.75rem; /* btn-sm ile aynı padding */
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 31px; /* btn-sm ile aynı minimum yükseklik */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5; /* btn-sm ile aynı line-height */
}

/* rounded-pill kullanıldığında border-radius Bootstrap'ın değerini kullan */
.btn-pdf-modern.rounded-pill {
    border-radius: 50rem !important;
}

.btn-pdf-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-pdf-modern:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-pdf-modern:hover::before {
    left: 100%;
}

.btn-pdf-modern:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-pdf-modern i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

/* Modern İncele Button - PDF butonu ile aynı boyut */
.btn-incele-modern {
    font-size: 0.875rem !important; /* btn-sm ile aynı font-size */
    padding: 0.375rem 0.75rem !important; /* btn-sm ile aynı padding */
    min-height: 31px !important; /* btn-sm ile aynı minimum yükseklik */
    line-height: 1.5 !important; /* btn-sm ile aynı line-height */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --- Bildirimler ve Mesajlar (Alerts & Toasts) --- */
.modern-toast-container {
    z-index: 1080;
    margin-top: 5.5rem;
    pointer-events: none;
}
.modern-toast {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: var(--shadow-main);
    border-radius: 1.2rem !important;
    border: 1.5px solid rgba(200, 200, 200, 0.13);
    pointer-events: auto;
    opacity: 1 !important;
    animation: modernToastSlide 0.5s cubic-bezier(.4, 0, .2, 1);
}
@keyframes modernToastSlide {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to { opacity: 1; transform: none; }
}

/* --- Navigasyon (Navigation & Breadcrumbs) --- */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.5rem;
}

/* Navbar Linkleri */
.navbar-nav .nav-link {
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active,
.nav-link-modern.active {
    background: linear-gradient(135deg, #667eea, #764ba2) !important; /* logo gradyanı */
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50rem !important; /* rounded-pill gibi tam yuvarlatılmış */
}

/* Aktif olmayan hover davranışı koru - yuvarlatılmış */
.navbar-nav .nav-link:hover:not(.active),
.nav-link-modern:hover:not(.active) {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color) !important;
    border-radius: 50rem !important; /* rounded-pill gibi tam yuvarlatılmış */
}

/* --- Rozetler (Badges) --- */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

/* === 5. SAYFA ÖZELİNDE STİLLER (PAGE-SPECIFIC) === */

/* Profil Düzenleme Sayfası */
.profile-pic {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e0e0e0;
    background: #f1f5f9;
}

/* Modern PDF Upload Wrapper */
.modern-pdf-upload-wrapper {
    background: var(--bg-glass);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: var(--border-radius-main);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modern-pdf-upload-wrapper:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-main);
}

.pdf-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pdf-icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pdf-icon-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5), 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pdf-main-icon {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.pdf-filename {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pdf-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.pdf-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.pdf-placeholder {
    color: #6c757d;
    font-style: italic;
    display: inline-flex;
    align-items: center;
}

.pdf-info {
    font-size: 0.85rem;
    color: #6c757d;
}

.pdf-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.pdf-actions .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pdf-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Modern Image Upload Wrapper */
.modern-image-upload-wrapper {
    background: var(--bg-glass);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: var(--border-radius-main);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modern-image-upload-wrapper:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-main);
}

.image-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-icon-container {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.image-main-icon {
    font-size: 1.8rem;
    color: white;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

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

.image-filename {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.image-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.image-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.image-placeholder {
    color: #6c757d;
    font-style: italic;
    display: inline-flex;
    align-items: center;
}

.image-info {
    font-size: 0.85rem;
    color: #6c757d;
}

.image-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.image-actions .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.image-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive PDF Upload */
@media (max-width: 576px) {
    .pdf-upload-area, .image-upload-area {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pdf-icon-container, .image-icon-container {
        width: 65px;
        height: 65px;
    }
    
    .pdf-main-icon, .image-main-icon {
        font-size: 2rem;
    }
    
    .pdf-actions, .image-actions {
        justify-content: center;
    }
    
    .pdf-actions .btn, .image-actions .btn {
        flex: 1;
        min-width: 120px;
    }
}

/* === PROFİL DÜZENLEME SEKMELERİ === */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0.75rem 0.75rem 0 0;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.05);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
    border-color: transparent;
    font-weight: 600;
}

.nav-tabs .nav-link i {
    font-size: 1.1rem;
}

/* Paylaşım İzinleri Kartları */
.privacy-settings {
    padding: 1rem 0;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.privacy-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-header h6 {
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-content {
    padding-left: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

/* Responsive Sekmeler */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-tabs .nav-link i {
        font-size: 1rem;
    }
    
    .privacy-card {
        padding: 1rem;
    }
}

/* Makale Formu */
.admin-note-box {
    background: rgba(13, 110, 253, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    padding: 0.8rem 1rem;
    color: #084298;
}

/* Admin Dashboard */
.stat-card .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}
.users-card .icon-wrapper { background: linear-gradient(45deg, #3498db, #2980b9); }
.articles-card .icon-wrapper { background: linear-gradient(45deg, #2ecc71, #27ae60); }

/* === ACCESSIBILITY STYLES === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for better keyboard navigation */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ARIA live regions */
.aria-live {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Focus indicators for interactive elements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.text-muted {
    color: #6c757d !important;
}

/* Form labels should be properly associated */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Error messages should be clearly visible */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-weight: 500;
}

/* Loading states for better UX */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* === 6. MEDYA SORGULARI (RESPONSIVE DESIGN) === */

/* Tablet ve Altı */
@media (max-width: 991.98px) {
    body {
        padding-top: 80px;
    }
    .navbar-glass {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    .mobile-glass-menu {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 1.2rem;
        box-shadow: var(--shadow-main);
        margin: 0.7rem;
        padding-bottom: 1rem;
    }
    
    /* Makale Ekleme Sayfası - Yazarlar Uyarı Kutusu */
    .alert-info.d-lg-none {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .alert-info.d-lg-none small {
        font-size: 0.8rem;
    }
    
    /* Sayılar Sayfası - Mobil İyileştirmeler */
    .content-layout {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        order: 1;
    }
    
    .sidebar-card {
        margin-bottom: 0;
        border-radius: 1rem;
        padding: 0.6rem 0.875rem 0.5rem 0.875rem !important;
    }
    
    .sidebar-title {
        font-size: 0.95rem;
        margin-bottom: 0;
        padding: 0.4rem 0;
        font-weight: 600;
    }
    
    .sidebar-title i {
        font-size: 0.9rem;
    }
    
    .filter-toggle-icon {
        font-size: 0.85rem !important;
    }
    
    .year-filters {
        padding-top: 0.3rem;
    }
    
    .main-content {
        order: 2;
        width: 100%;
    }
    
    .journal-card {
        padding: 1.25rem;
        border-radius: 1rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .sidebar-card {
        margin-bottom: 1rem;
    }
    
    .journal-content {
        gap: 1rem;
    }
    
    .journal-cover {
        width: 90px;
        height: 118px;
        flex-shrink: 0;
    }
    
    .journal-title {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        font-weight: 700;
        color: #1a202c;
    }
    
    .journal-info {
        gap: 0.5rem;
    }
    
    .journal-title {
        margin-bottom: 0.5rem;
    }
    
    .journal-actions {
        display: none !important;
    }
    
    .journal-info {
        margin-bottom: 0;
    }
    
    .journal-actions .btn {
        flex: none;
        width: 80px;
        justify-content: center;
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
        min-height: 30px;
        height: 30px;
        text-align: center;
        flex-grow: 0;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
    }
    
    .journal-actions .btn i {
        font-size: 0.6rem;
    }
    
    .journal-actions .btn-incele-modern {
        display: none !important;
    }
    
    .journal-actions .btn-pdf-modern {
        display: none !important;
    }
    
    .journal-actions .btn-pdf-modern i {
        font-size: 0.6rem !important;
    }
    
    .main-container {
        padding: 0.75rem;
    }
    
    .journals-grid {
        gap: 0.75rem;
    }
    
    /* Sayi Makaleleri Sayfası - Tablet Buton Düzenlemeleri */
    .makale-actions {
        display: none !important;
    }
    
    .makale-footer {
        padding-top: 0 !important;
        border-top: none !important;
    }
}

/* Mobil Cihazlar */
@media (max-width: 767.98px) {
    .glass-card, .profile-card {
        padding: 1.5rem 1rem;
    }
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .btn:last-child {
        margin-bottom: 0;
    }
    .text-gradient {
        font-size: 2rem;
    }
    .stat-value {
        font-size: 1.5rem;
    }
    .profile-pic {
        width: 90px;
        height: 90px;
    }
}

/* Daha Küçük Mobil Cihazlar */
@media (max-width: 576px) {
    .dashboard-container, .editors-page {
        padding: 1rem 0.5rem;
    }
    .modern-toast {
        width: 95vw;
        max-width: 95vw;
        font-size: 0.95rem;
    }
    .search-section {
        margin-bottom: 1.2rem;
    }
    .search-glass-card {
        flex-direction: column;
        align-items: stretch;
        padding: 0.7rem 0.2rem;
        max-width: 98vw;
        box-shadow: 0 4px 24px rgba(44,62,80,0.13), 0 2px 8px 0 rgba(44,62,80,0.08);
        border-radius: 1.5rem;
        background: rgba(255,255,255,0.98);
        gap: 0.7rem;
    }
    .search-form {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    .search-form button.search-btn-icon {
        min-width: 42px;
        width: 42px;
        height: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        border-radius: 50% !important;
        box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    }
    .search-form button.search-btn-icon i {
        margin: 0;
    }
    .search-input {
        width: 100%;
        margin-right: 0.3rem;
    }
    .editor-card .btn {
        min-width: 120px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        font-size: 1rem;
    }
}

/* === Editörler Sayfası Arama Kutusu Modern ve Küçük === */
.search-section {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding-left: 0;
}
.search-glass-card {
    background: rgba(255,255,255,0.95);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
}
.search-form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.search-input-wrapper {
    position: relative;
    width: 100%;
    flex-grow: 1;
}
.search-input {
    border-radius: 2rem !important;
    padding: 0.45rem 1.2rem 0.45rem 2.2rem !important;
    font-size: 1rem !important;
    height: 2.2rem !important;
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.04);
    border: 1px solid #e0eafc;
    background: rgba(255,255,255,0.98);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 100%;
}
.search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 2;
}
@media (min-width: 992px) {
    .search-glass-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .search-section {
        padding-left: 0;
        padding-right: 0;
    }
    .editors-page > .container {
        max-width: 1140px;
    }
}

.dropdown-icon {
    right: 1.6rem;
    color: #6c757d;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 3;
}
.form-select.form-select-sm.rounded-pill {
    padding-right: 2.5rem;
}

.form-select, .form-select:focus {
    border-radius: 2rem !important;
}

/* Chrome, Safari, Edge için açılır menüde köşe yumuşatma */
select.form-select {
    border-radius: 2rem !important;
    overflow: hidden;
}
select.form-select option {
    border-radius: 1.2rem;
}

/* Firefox için */
select.form-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.choices[data-type*=select-one] .choices__inner::after {
    display: none !important;
}
.custom-dropdown-icon {
    right: 1.6rem;
    color: #6c757d;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 10;
}
.choices__inner {
    border-radius: 2rem !important;
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    border: 1.5px solid #e0eafc !important;
    min-height: 2.5rem;
    padding: 0.4rem 2.5rem 0.4rem 1.2rem !important;
    font-size: 1.05rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.choices__inner:focus-within, .choices__inner.is-focused {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.10);
}
.choices__list--dropdown {
    border-radius: 1.5rem !important;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 4px 24px rgba(44,62,80,0.13), 0 2px 8px 0 rgba(44,62,80,0.08) !important;
    border: none !important;
    padding: 0.5rem 0.2rem !important;
    font-size: 1rem;
    margin-top: 0.3rem !important;
}
.choices__item--selectable {
    border-radius: 1rem;
    padding: 0.5rem 1.2rem;
    margin: 0.1rem 0.3rem;
    color: #2c3e50;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.choices__item--selectable.is-highlighted {
    background: #eaf3fb !important;
    color: #0d6efd !important;
}
.choices__item--selectable.is-selected {
    background: #0d6efd !important;
    color: #fff !important;
}
.choices__list--dropdown .choices__item--selectable:hover {
    background: #eaf3fb !important;
    color: #0d6efd !important;
}
.choices__list--dropdown .choices__item--selectable {
    cursor: pointer;
}
.choices__list--dropdown .choices__item {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.editor-card .btn {
    display: inline-block;
    min-width: 140px;
    max-width: 90%;
    width: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* === MODERN NAV LINK TRANSITIONS === */
/* Sadece buton geçiş efektlerini koruyoruz */
.nav-link-modern {
    color: #495057;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link-modern:hover::before {
    left: 100%;
}

.nav-link-modern:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50rem !important; /* rounded-pill gibi tam yuvarlatılmış */
    text-decoration: none;
}

/* aktif link hover edildiğinde de gradyanı koru */
.navbar-nav .nav-link.active:hover,
.nav-link-modern.active:hover {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #ffffff !important;
}

.nav-link-modern.nav-link-red {
    color: #dc3545;
}

.nav-link-modern.nav-link-red:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50rem !important; /* rounded-pill gibi tam yuvarlatılmış */
}

.nav-link-modern.nav-link-red.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.15);
    border-radius: 50rem !important; /* rounded-pill gibi tam yuvarlatılmış */
}

/* === MODERN SEARCH BUTTON STYLES === */
.search-btn {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #764ba2, #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.search-btn:hover::before {
    opacity: 1;
}

.search-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.search-btn:active {
    transform: translateY(0) scale(0.95);
}

.search-btn i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-btn:hover i {
    transform: scale(1.1);
}

/* Search button pulse animation */
@keyframes searchPulse {
    0% {
        box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3), 0 0 0 6px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    }
}

.search-btn:focus {
    animation: searchPulse 1.5s ease-in-out;
}

/* Mobile search button */
.search-btn-mobile {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.search-btn-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #764ba2, #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.search-btn-mobile:hover::before {
    opacity: 1;
}

.search-btn-mobile:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 18px rgba(102, 126, 234, 0.4);
    color: white;
}

.search-btn-mobile:active {
    transform: translateY(0) scale(0.95);
}

.search-btn-mobile i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-btn-mobile:hover i {
    transform: scale(1.1);
}

/* Search modal icon */
.search-modal-icon {
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-modal-icon:hover {
    color: #764ba2;
    transform: scale(1.1);
}

/* Search input group icon */
.search-input-icon {
    color: #6c757d;
    transition: all 0.3s ease;
}

.search-input-icon:hover {
    color: #667eea;
    transform: scale(1.05);
}

/* === SEARCH MODAL BACKDROP BLUR === */
/* Modal arkasını bulanıklaştır */
.modal-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3) !important;
}

/* Modal içeriği için ek stil */
#searchModal .modal-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1055;
}

/* Modal dialog'u sabitle - Bootstrap varsayılan boyutları */
#searchModal .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-width: 800px;
    width: 90%;
}

/* Responsive boyutlar */
@media (min-width: 576px) {
    #searchModal .modal-dialog {
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    #searchModal .modal-dialog {
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    #searchModal .modal-dialog {
        max-width: 800px;
    }
}

/* Modal başlığı için */
#searchModal .modal-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Modal gövdesi için */
#searchModal .modal-body {
    background: rgba(255, 255, 255, 0.05);
}

/* Body blur efekti kaldırıldı - arama modalında arka plan değişimi sorunu çözüldü */

/* Modal backdrop için daha güçlü blur */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 1;
}

/* Modal blur efektleri kaldırıldı - arama modalında arka plan değişimi sorunu çözüldü */

/* === ADMIN DROPDOWN FIXES === */
/* Admin dropdown butonları için özel stiller */
.nav-link-modern.dropdown-toggle.nav-link-red {
    color: #dc3545 !important;
    background: transparent;
    border: none;
    position: relative;
}

.nav-link-modern.dropdown-toggle.nav-link-red:hover {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
    transform: translateY(-1px);
}

.nav-link-modern.dropdown-toggle.nav-link-red:focus {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.nav-link-modern.dropdown-toggle.nav-link-red.active {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.15) !important;
    font-weight: 600;
}

/* Dropdown arrow için özel stil */
.nav-link-modern.dropdown-toggle.nav-link-red::after {
    border-top-color: #dc3545 !important;
    transition: all 0.3s ease;
}

.nav-link-modern.dropdown-toggle.nav-link-red:hover::after {
    border-top-color: #dc3545 !important;
    transform: translateY(1px);
}

/* Dropdown menü açık olduğunda */
.nav-link-modern.dropdown-toggle.nav-link-red[aria-expanded="true"] {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.15) !important;
}

.nav-link-modern.dropdown-toggle.nav-link-red[aria-expanded="true"]::after {
    border-top-color: #dc3545 !important;
    transform: rotate(180deg);
}

/* Mobile admin dropdown */
@media (max-width: 991px) {
    .nav-link-modern.dropdown-toggle.nav-link-red {
        padding: 0.75rem 1rem;
        border-radius: 15px;
        font-size: 1rem;
    }
}

/* Bootstrap dropdown override for admin buttons */
.nav-link-modern.dropdown-toggle.nav-link-red:not([aria-expanded="true"]) {
    color: #dc3545 !important;
}

.nav-link-modern.dropdown-toggle.nav-link-red:not([aria-expanded="true"]):hover {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

.nav-link-modern.dropdown-toggle.nav-link-red:not([aria-expanded="true"]):focus {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Dropdown toggle arrow color fix */
.nav-link-modern.dropdown-toggle.nav-link-red::after {
    border-top: 0.3em solid #dc3545 !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    margin-left: 0.5em;
    vertical-align: 0.255em;
    content: "";
    display: inline-block;
}

/* Show state */
.nav-link-modern.dropdown-toggle.nav-link-red[aria-expanded="true"]::after {
    border-top: 0 !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0.3em solid #dc3545 !important;
    border-left: 0.3em solid transparent !important;
}

/* === AKADEMİK DERGİ - ISSUE ARCHIVE STİLLERİ === */
/* Academic dergi sitesi tarzında profesyonel issue archive stilleri */

.academic-issue-archive {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.archive-layout {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Issue Archive Sidebar */
.archive-sidebar-academic {
    width: 280px;
    background: #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 120px; /* Navbar'ın altında kalması için */
    z-index: 10;
}

.archive-header-academic {
    background: #6c757d;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.year-links-academic {
    padding: 1rem 0;
}

.year-link-academic {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.year-link-academic:hover {
    background: #dee2e6;
    color: #212529;
    border-left-color: #007bff;
    text-decoration: none;
}

.year-link-academic.active {
    background: #007bff;
    color: white;
    border-left-color: #0056b3;
}

/* Issues Content Area */
.issues-content-academic {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
}

.issue-card-academic {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.issue-card-academic:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #007bff;
    text-decoration: none;
    color: inherit;
}

.issue-cover-academic {
    width: 120px;
    height: 160px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
    overflow: hidden;
}

.issue-cover-academic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.issue-details-academic {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.issue-access-academic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.issue-title-academic {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.issue-info-academic {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.issue-meta-academic {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .archive-layout {
        flex-direction: column;
    }
    
    .archive-sidebar-academic {
        width: 100%;
        position: static;
    }
    
    .year-links-academic {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .year-link-academic {
        padding: 0.5rem 1rem;
        border-radius: 4px;
        border: 1px solid #dee2e6;
        border-left: 1px solid #dee2e6 !important;
    }
}

@media (max-width: 768px) {
    .issue-card-academic {
        flex-direction: column;
        text-align: center;
    }
    
    .issue-cover-academic {
        width: 100px;
        height: 133px;
        align-self: center;
    }
    
    .archive-layout {
        padding: 1rem 0.5rem;
    }
    
    .issues-content-academic {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .issue-cover-academic {
        width: 80px;
        height: 107px;
    }
    
    .issue-card-academic {
        padding: 1rem;
    }
}

/* ===================================================================
   INLINE CSS KODLARI - HTML DOSYALARINDAN TAŞINAN STİLLER
   =================================================================== */

/* Profil Düzenleme Sayfası Stilleri */
.image-container-large {
    position: relative;
    display: inline-block;
}

.image-preview-large {
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-preview-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.icon-placeholder-large {
    border: 4px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-large {
    font-size: 4rem;
    color: #6c757d;
}

/* Profil Input Stilleri */
.profile-input {
    border-radius: 0.75rem;
    border: 2px solid #e9ecef !important;
    padding: 0.75rem 1rem 0.75rem 3rem;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: none !important;
    background-color: #ffffff;
    font-size: 0.95rem;
}

.profile-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    background-color: #f8f9ff;
    outline: none !important;
    transform: translateY(-1px);
}

.profile-input:hover {
    border-color: #cbd5e0;
    background-color: #fafafa;
}

/* Sadece profile-input olmayan form elemanları için çift çizgi önleme - KALDIRILDI */

/* Biyografi Stilleri */
.bio-modern-textarea {
    border-radius: 0.75rem;
    border: 2px solid #e9ecef !important;
    padding: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    resize: vertical;
    min-height: 120px;
    box-shadow: none !important;
    background-color: #ffffff;
    font-size: 0.95rem;
}

.bio-modern-textarea:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    background-color: #f8f9ff;
    outline: none !important;
    transform: translateY(-1px);
}

.bio-modern-textarea:hover {
    border-color: #cbd5e0;
    background-color: #fafafa;
}

.bio-modern-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.bio-modern-box:focus-within {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.bio-title-icon {
    color: #667eea;
    font-size: 1.1rem;
}

/* Auth Sayfaları Stilleri */
.auth-container {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

/* Logo Bölümü */
.auth-logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
    max-width: 400px;
}

.main-logo {
    height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

/* Form Bölümü */
.auth-form-section {
    flex: 1;
    max-width: 500px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.auth-input {
    border: 2px solid #e9ecef !important; /* Profil formu gibi gri çerçeve */
    border-radius: 12px !important; /* Yuvarlatılmış köşeler */
    padding: 0.875rem 1rem !important; /* İç padding */
    font-size: 1rem;
    transition: all 0.3s ease !important;
    background: white !important; /* Beyaz arka plan */
    width: 100%;
    box-shadow: none !important; /* Profil formu gibi gölge yok */
}

.auth-input:focus {
    border-color: #667eea !important; /* Profil formu gibi mavi çerçeve */
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important; /* Profil formu gibi mavi ışık */
    background: #f8f9ff !important; /* Profil formu gibi açık mavi arka plan */
    outline: none !important;
    /* Hareket animasyonu kaldırıldı */
}

/* Hover efekti kaldırıldı - sadece focus efekti var */

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.password-toggle:hover {
    color: #667eea;
}

.auth-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.auth-footer {
    text-align: center;
}

.auth-link-text {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.auth-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #764ba2;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.form-error::before {
    content: "⚠";
    margin-right: 0.5rem;
}

/* Sayılar Sayfası Stilleri */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.content-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Sol Sidebar - Yıl Filtreleri */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 120px; /* Navbar'ın altında kalması için */
    z-index: 10;
}

.sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .sidebar-card {
        padding-bottom: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .sidebar-card {
        padding-bottom: 0.4rem !important;
    }
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.sidebar-title:hover {
    color: var(--primary-color);
}

.filter-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
    margin-left: auto;
}

.sidebar-title[aria-expanded="true"] .filter-toggle-icon {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .sidebar-title {
        cursor: default;
    }
    
    .sidebar-title:hover {
        color: #2d3748;
    }
    
    .filter-toggle-icon {
        display: none !important;
    }
}

.year-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.year-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    border: 1px solid transparent;
    background: #f8fafc;
}

.year-filter-item:hover {
    background: #eff6ff;
    color: #3b82f6;
    text-decoration: none;
    transform: translateX(3px);
}

.year-filter-item.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.year-count {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.year-filter-item.active .year-count {
    background: rgba(255, 255, 255, 0.3);
}

.year-filter-item:not(.active) .year-count {
    background: #e2e8f0;
    color: #64748b;
}

/* Ana İçerik Alanı */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Dergi Kartları */
.journals-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journal-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
}

.journal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.journal-card:hover::before {
    transform: scaleX(1);
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
    border-color: #3b82f6;
}

.journal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.journal-cover {
    width: 100px;
    height: 125px;
    border-radius: 0.4rem;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f9ff, #f8fafc);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0.4rem;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.journal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.journal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    word-wrap: break-word;
    z-index: 2;
    position: relative;
}

@media (min-width: 992px) {
    .journal-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .journal-title {
        margin-bottom: 0;
        flex: 1;
    }
}

.journal-subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.journal-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    min-height: 40px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.journal-actions .btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    line-height: 1.2;
    min-height: 32px;
    height: 32px;
    font-weight: 500;
    width: 90px;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.journal-actions .btn i {
    font-size: 0.65rem;
    margin-right: 0.25rem;
}

/* İncele butonu için özel stil */
.journal-actions .btn-incele-modern {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
    min-height: 32px !important;
    height: 32px !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

/* PDF butonu için özel stil */
.journal-actions .btn-pdf-modern {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
    min-height: 32px !important;
    height: 32px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.journal-actions .btn-pdf-modern i {
    font-size: 0.65rem !important;
    margin-right: 0.25rem !important;
}

@media (min-width: 992px) {
    .journal-actions .btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    
    .journal-actions .btn i {
        font-size: 0.7rem;
    }
    
    .journal-actions .btn-incele-modern {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.7rem !important;
    }
    
    .journal-actions .btn-pdf-modern {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.7rem !important;
    }
    
    .journal-actions .btn-pdf-modern i {
        font-size: 0.7rem !important;
    }
}

/* Editörler Sayfası Stilleri */
.editors-page {
    background: #f8fafc;
    min-height: 100vh;
}

.text-gradient {
    background: linear-gradient(90deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.divider-secondary {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #495057);
    border-radius: 2px;
}

/* Kart kolonları */
.editor-col {
    flex: 0 1 calc(25% - 2rem); /* Daha dar kartlar, bir satırda 4 tane */
    display: flex;
}

/* Kartlar */
.editor-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.editor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Avatar */
.editor-avatar-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.editor-avatar {
    border-radius: 50%;
    object-fit: cover;
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.editor-avatar:hover {
    transform: scale(1.08);
}

.editor-name {
    font-weight: 600;
    color: #2c3e50;
}

.editor-username {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-back:hover {
    background: #8b5cf6;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .auth-logo-section {
        order: 1;
    }
    
    .auth-form-section {
        order: 2;
        max-width: 100%;
    }
    
    .logo-title {
        font-size: 2.5rem;
    }
    
    .main-logo {
        height: 140px;
    }
    
    .content-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
    
    .year-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .year-filter-item {
        padding: 0.5rem 1rem;
        border-radius: 4px;
        border: 1px solid #dee2e6;
        border-left: 1px solid #dee2e6 !important;
    }
    
    .editor-col { 
        flex: 0 1 calc(33.333% - 2rem); 
    }
}

@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1rem;
        gap: 2rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .main-logo {
        height: 120px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .journal-card {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .journal-content {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 0.875rem;
    }
    
    .journal-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        max-width: 120px;
        margin: 0 auto;
    }
    
    .journal-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .journal-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
        color: #1a202c;
        line-height: 1.3;
        text-align: center;
    }
    
    .journal-actions {
        display: none !important;
    }
    
    .journal-info {
        margin-bottom: 0;
    }
    
    .journal-actions .btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        flex: none;
        width: 85px;
        min-height: 32px;
        height: 32px;
        text-align: center;
        flex-grow: 0;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
    }
    
    .journal-actions .btn i {
        font-size: 0.65rem;
    }
    
    .journal-actions .btn-incele-modern {
        display: none !important;
    }
    
    .journal-actions .btn-pdf-modern {
        display: none !important;
    }
    
    .journal-actions .btn-pdf-modern:hover {
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35) !important;
        transform: translateY(-1px) !important;
    }
    
    .journal-actions .btn-pdf-modern i {
        font-size: 0.65rem !important;
    }
    
    .content-layout {
        padding: 0.75rem;
    }
    
    .main-content {
        padding: 0.5rem;
    }
    
    .sidebar-card {
        padding: 0.5rem 0.75rem 0.4rem 0.75rem !important;
    }
    
    .sidebar-title {
        font-size: 0.9rem;
        padding: 0.35rem 0 !important;
        margin-bottom: 0 !important;
        font-weight: 600;
    }
    
    .sidebar-title i {
        font-size: 0.85rem;
    }
    
    .filter-toggle-icon {
        font-size: 0.8rem !important;
    }
    
    .year-filters {
        padding-top: 0.25rem;
    }
    
    .year-filter-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .editor-col { 
        flex: 0 1 calc(50% - 2rem); 
    }
    
    /* Mobil için daha iyi görünüm */
    .journal-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .journal-card:active {
        transform: scale(0.98);
    }
    
    /* Sayi Makaleleri Sayfası - Mobil Buton Düzenlemeleri */
    .makale-actions {
        display: none !important;
    }
    
    .makale-footer {
        padding-top: 0 !important;
        border-top: none !important;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
    
    .main-logo {
        height: 110px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .journal-cover {
        width: 80px;
        height: 107px;
    }
    
    .journal-card {
        padding: 1rem;
    }
    
    .image-container-large {
        margin-bottom: 1rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .profile-input {
        padding: 0.625rem 0.875rem 0.625rem 2.5rem;
    }
    
    .input-icon-group i {
        left: 0.875rem;
    }
    
    .editor-col { 
        flex: 0 1 100%; 
    }
    
    .editor-avatar { 
        width: 70px; 
        height: 70px; 
    }
}

/* ===================================================================
   ADMIN DOSYALARINDAN TAŞINAN STİLLER
   =================================================================== */

/* Admin Makale Change List Stilleri */
.stats-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #007cba;
    margin: 0;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0 0 0;
}

.quick-actions {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.quick-actions h3 {
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 16px;
}

.quick-actions a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 16px;
    background: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.quick-actions a:hover {
    background: #1565c0;
}

/* Admin Dashboard Stilleri */
.dashboard-container {
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #007cba;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .number {
    font-size: 32px;
    font-weight: bold;
    color: #007cba;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.content-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.recent-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item .icon {
    width: 30px;
    height: 30px;
    background: #007cba;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
}

.recent-item .content {
    flex: 1;
}

.recent-item .title {
    font-weight: 500;
    color: #333;
    margin: 0 0 5px 0;
}

.recent-item .meta {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-published {
    background: #d4edda;
    color: #155724;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-answered {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Admin Monitoring Dashboard Stilleri */
.metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.health-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8rem;
}

.health-ok {
    background-color: #d4edda;
    color: #155724;
}

.health-warning {
    background-color: #fff3cd;
    color: #856404;
}

.health-error {
    background-color: #f8d7da;
    color: #721c24;
}

.backup-list {
    max-height: 200px;
    overflow-y: auto;
}

.refresh-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* ===================================================================
   KALAN DOSYALARDAN TAŞINAN STİLLER
   =================================================================== */

/* Makalelerim Sayfası Stilleri */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Compact variant for smaller cards (used on profile page) */
.articles-grid--compact .article-card {
  padding: 0.85rem;
}
.articles-grid--compact .article-title a {
  font-size: 0.95rem;
}
.articles-grid--compact .article-badges .badge,
.articles-grid--compact .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}
.articles-grid--compact .stat-item {
  font-size: 0.7rem;
  gap: 0.25rem;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #6c757d;
}
.articles-grid--compact .stat-item i {
  font-size: 0.7rem;
  color: #adb5bd;
}
.articles-grid--compact .article-stats {
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.article-card:hover::before {
  transform: scaleX(1);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.article-title {
  margin: 0;
  flex: 1;
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.article-card:hover .article-title {
  color: #667eea;
}

.article-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-action:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.status-published {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
}

.status-draft {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
  color: white;
}

.badge-info {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
}

.badge-warning {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: white;
}

.badge-secondary {
  background: linear-gradient(135deg, #a0aec0, #718096);
  color: white;
}

.article-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #718096;
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-item i {
  color: #a0aec0;
  font-size: 0.875rem;
}

/* Makalelerim sayfası için kutucuksuz stat-item */
.articles-grid-makalelerim .stat-item {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #6c757d;
  font-size: 0.8rem;
  gap: 0.3rem;
}

.articles-grid-makalelerim .stat-item i {
  color: #adb5bd;
  font-size: 0.85rem;
}

.articles-grid-makalelerim .article-stats {
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-modern {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #a0aec0;
  font-size: 2rem;
}

.empty-title {
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-text {
  color: #718096;
  margin-bottom: 1.5rem;
}

/* Statistics Cards */
.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.stat-icon {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
}

/* Core Monitoring Dashboard Stilleri */
.metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.health-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.health-ok {
    background-color: #d4edda;
    color: #155724;
}

.health-warning {
    background-color: #fff3cd;
    color: #856404;
}

.health-error {
    background-color: #f8d7da;
    color: #721c24;
}

.refresh-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Responsive Design for Makalelerim */
@media (max-width: 768px) {
  .article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .article-actions {
    align-self: flex-end;
  }
  
  .article-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .article-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .badge {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .article-card {
    padding: 1rem;
  }
  
  .article-title a {
    font-size: 1rem;
  }
  
  .btn-modern {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ===================================================================
   DASHBOARD DOSYALARINDAN TAŞINAN STİLLER
   =================================================================== */

/* Admin Dashboard Stilleri */
.dashboard-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-icon.users { background: linear-gradient(135deg, #667eea, #764ba2); }
.stat-icon.articles { background: linear-gradient(135deg, #f093fb, #f5576c); }
.stat-icon.journals { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.stat-icon.messages { background: linear-gradient(135deg, #fa709a, #fee140); }

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    display: inline-block;
}

.stat-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.stat-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1.5rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.quick-action:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
    color: #667eea;
    text-decoration: none;
}

.quick-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quick-action-content {
    flex: 1;
}

.quick-action-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.quick-action-desc {
    font-size: 0.85rem;
    color: #6c757d;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
    color: #667eea;
    text-decoration: none;
}

.recent-item-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.recent-item-content {
    flex: 1;
}

.recent-item-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.recent-item-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.chart-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    color: #6c757d;
}

/* Admin Dergi İçerik Form Stilleri */
#id_icerik {
    min-height: 200px;
}

#id_aciklama {
    min-height: 100px;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Admin Makale Form Stilleri */
.user-noneditable {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .welcome-text {
        font-size: 2rem;
    }
}

/* ===================================================================
   HTML DOSYALARINDAN TAŞINAN INLINE CSS KODLARI
   =================================================================== */

/* Profil Düzenleme Sayfası Stilleri - my_profil.html */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Articles Section Styles */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(102, 126, 234, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.article-card:hover::before {
  transform: scaleX(1);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.article-title {
  margin: 0;
  flex: 1;
}

.article-title a {
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: #667eea;
}

.article-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-action:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.status-published {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
}

.status-draft {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
  color: white;
}

.badge-info {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
}

.badge-warning {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: white;
}

.badge-secondary {
  background: linear-gradient(135deg, #a0aec0, #718096);
  color: white;
}

.article-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #718096;
  font-size: 0.875rem;
  font-weight: 500;
}

.stat-item i {
  color: #a0aec0;
  font-size: 0.875rem;
}

/* Makalelerim sayfası için kutucuksuz stat-item */
.articles-grid-makalelerim .stat-item {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #6c757d;
  font-size: 0.8rem;
  gap: 0.3rem;
}

.articles-grid-makalelerim .stat-item i {
  color: #adb5bd;
  font-size: 0.85rem;
}

.articles-grid-makalelerim .article-stats {
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-modern {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #a0aec0;
  font-size: 2rem;
}

.empty-title {
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-text {
  color: #718096;
  margin-bottom: 1.5rem;
}

/* Profil Resmi Container Stilleri */
.profile-image-container {
  position: relative;
  display: inline-block;
}

.profile-img {
  position: relative;
  z-index: 2;
}

.profile-fallback {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 2rem;
  z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-sidebar {
    position: static;
  }
  
  .article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .article-actions {
    align-self: flex-end;
  }
  
  .article-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .article-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .badge {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .article-card {
    padding: 1rem;
  }
  
  .article-title a {
    font-size: 1rem;
  }
  
  .btn-modern {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Parola Değiştir Sayfası Stilleri - parola_degistir.html */
.auth-container {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

/* Logo Bölümü */
.auth-logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
    max-width: 400px;
}

.main-logo {
    height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

/* Form Bölümü */
.auth-form-section {
    flex: 1;
    max-width: 500px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.auth-input {
    border: 2px solid #e9ecef !important; /* Profil formu gibi gri çerçeve */
    border-radius: 12px !important; /* Yuvarlatılmış köşeler */
    padding: 0.875rem 1rem !important; /* İç padding */
    font-size: 1rem;
    transition: all 0.3s ease !important;
    background: white !important; /* Beyaz arka plan */
    width: 100%;
    box-shadow: none !important; /* Profil formu gibi gölge yok */
}

.auth-input:focus {
    border-color: #667eea !important; /* Profil formu gibi mavi çerçeve */
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important; /* Profil formu gibi mavi ışık */
    background: #f8f9ff !important; /* Profil formu gibi açık mavi arka plan */
    outline: none !important;
    /* Hareket animasyonu kaldırıldı */
}

/* Hover efekti kaldırıldı - sadece focus efekti var */

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.password-toggle:hover {
    color: #667eea;
}

.auth-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.form-error::before {
    content: "⚠";
    margin-right: 0.5rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .auth-logo-section {
        order: 1;
    }
    
    .auth-form-section {
        order: 2;
        max-width: 100%;
    }
    
    .logo-title {
        font-size: 2.5rem;
    }
    
    .main-logo {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1rem;
        gap: 2rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .main-logo {
        height: 120px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
    
    .main-logo {
        height: 110px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}

/* Footer Stilleri - _footer.html */
.modern-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4facfe, transparent);
}

.footer-content {
    padding: 3rem 0 1rem 0;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo-img-large:hover {
    transform: scale(1.05);
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4facfe;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 25px;
    color: #4facfe;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-link:hover {
    background: #4facfe;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #4facfe;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #4facfe;
    padding-left: 10px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4facfe;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: #4facfe;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(79, 172, 254, 0.3);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #4facfe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-main {
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-logo-large {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-logo-img-large {
        width: 60px;
        height: 60px;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

/* 404 Sayfası Stilleri - 404.html */
.logo-404 {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.error-animation {
    position: relative;
    display: inline-block;
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: #667eea;
    text-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    animation: bounce 2s infinite;
}

.error-number .four {
    animation-delay: 0s;
}

.error-number .zero {
    animation-delay: 0.2s;
    color: #764ba2;
}

.error-number .four:last-child {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

@media (max-width: 768px) {
    .logo-404 {
        max-height: 80px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* 500 Sayfası Stilleri - 500.html */
.logo-500 {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: #dc3545;
    text-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
    animation: shake 2s infinite;
}

.error-number .five {
    animation-delay: 0s;
}

.error-number .zero {
    animation-delay: 0.1s;
}

.error-number .zero:last-child {
    animation-delay: 0.2s;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
}

@media (max-width: 768px) {
    .logo-500 {
        max-height: 80px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .btn-danger {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* 403 Sayfası Stilleri - 403.html */
.logo-403 {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: #ffc107;
    text-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
    animation: glow 2s infinite;
}

.error-number .four {
    animation-delay: 0s;
}

.error-number .zero {
    animation-delay: 0.2s;
    color: #fd7e14;
}

.error-number .three {
    animation-delay: 0.4s;
    color: #ffc107;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
    }
    50% {
        text-shadow: 0 4px 20px rgba(255, 193, 7, 0.6);
    }
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    color: #000;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #e0a800 0%, #e55a00 100%);
    color: #000;
}

@media (max-width: 768px) {
    .logo-403 {
        max-height: 80px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .btn-warning {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Print Styles - _print_styles.html */
@media print {
    /* Print-specific styles */
    @page {
        margin: 1cm;
        size: A4;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    /* Hide navigation and non-essential elements */
    .navbar,
    .btn,
    .btn-group,
    .dropdown,
    .modal,
    .toast,
    .alert,
    .card-header,
    .sidebar,
    .footer,
    #btn-back-to-top,
    .loading-spinner,
    .loading-overlay {
        display: none !important;
    }
    
    /* Show only main content */
    .container,
    .main-content,
    .card-body {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    /* Typography for print */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000 !important;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    /* Links */
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    /* Tables */
    table {
        page-break-inside: avoid;
        border-collapse: collapse;
    }
    
    th, td {
        border: 1px solid #000;
        padding: 4pt;
    }
    
    /* Page breaks */
    .page-break {
        page-break-before: always;
    }
    
    /* Article specific */
    .article-meta {
        border-bottom: 1px solid #000;
        padding-bottom: 10pt;
        margin-bottom: 15pt;
    }
    
    .article-content {
        font-size: 11pt;
        line-height: 1.5;
    }
    
    /* Hide interactive elements */
    .form-control,
    .form-select,
    input,
    textarea,
    select {
        border: 1px solid #000 !important;
        background: #fff !important;
    }
}

/* ===================================================================
   KALAN DOSYALARDAN TAŞINAN STİLLER
   =================================================================== */

/* Editor Profile Stilleri */
.profile-card {
    background: #ffffff;
    border-radius: 1.25rem;
    backdrop-filter: blur(6px);
}

.avatar-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

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

.email-box {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.bio-box {
    background: #f9fafc;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
}

.resume-section {
    display: inline-block;
}

.resume-section .btn {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
}

.resume-section .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.article-list {
    border-radius: 12px;
    overflow: hidden;
}

.article-item {
    background: #fff;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background: #f1f5ff;
    transform: translateX(3px);
}

.modern-toast .icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Editorler Sayfası Stilleri */
.editors-page {
    background: #f8fafc;
    min-height: 100vh;
}

.text-gradient {
    background: linear-gradient(90deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.divider-secondary {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #495057);
    border-radius: 2px;
}

/* Kart kolonları */
.editor-col {
    flex: 0 1 calc(25% - 2rem); /* Daha dar kartlar, bir satırda 4 tane */
    display: flex;
}

/* Kartlar */
.editor-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.editor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Avatar */
.editor-avatar-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.editor-avatar {
    border-radius: 50%;
    object-fit: cover;
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.editor-avatar:hover {
    transform: scale(1.08);
}

.editor-name {
    font-weight: 600;
    color: #2c3e50;
}

.editor-username {
    font-size: 0.85rem;
    color: #6c757d;
}

.btn { transition: all 0.2s ease; }
.btn:hover { transform: translateY(-2px); }

/* Responsive */
@media (max-width: 992px) {
    .editor-col { flex: 0 1 calc(33.333% - 2rem); } /* tablet: 3 kart */
}
@media (max-width: 768px) {
    .editor-col { flex: 0 1 calc(50% - 2rem); } /* mobil: 2 kart */
}
@media (max-width: 576px) {
    .editor-col { flex: 0 1 100%; } /* küçük mobil: 1 kart */
    .editor-avatar { width: 70px; height: 70px; }
}

/* İletişim Sayfası Stilleri */
.auth-container {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

/* Logo Bölümü */
.auth-logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
    max-width: 400px;
}

.main-logo {
    height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

/* Form Bölümü */
.auth-form-section {
    flex: 1;
    max-width: 600px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card {
    max-width: 700px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.auth-input {
    border: 2px solid #e9ecef !important; /* Profil formu gibi gri çerçeve */
    border-radius: 12px !important; /* Yuvarlatılmış köşeler */
    padding: 0.875rem 1rem !important; /* İç padding */
    font-size: 1rem;
    transition: all 0.3s ease !important;
    background: white !important; /* Beyaz arka plan */
    width: 100%;
    box-shadow: none !important; /* Profil formu gibi gölge yok */
}

.auth-input:focus {
    border-color: #667eea !important; /* Profil formu gibi mavi çerçeve */
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important; /* Profil formu gibi mavi ışık */
    background: #f8f9ff !important; /* Profil formu gibi açık mavi arka plan */
    outline: none !important;
    /* Hareket animasyonu kaldırıldı */
}

/* Hover efekti kaldırıldı - sadece focus efekti var */

.auth-input::placeholder {
    color: #a0aec0;
}

textarea.auth-input {
    resize: vertical;
    min-height: 120px;
}

.auth-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.form-error::before {
    content: "⚠";
    margin-right: 0.5rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .auth-logo-section {
        order: 1;
    }
    
    .auth-form-section {
        order: 2;
        max-width: 100%;
    }
    
    .logo-title {
        font-size: 2.5rem;
    }
    
    .main-logo {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1rem;
        gap: 2rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .main-logo {
        height: 120px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
    
    .main-logo {
        height: 110px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
}

/* Sayı Makaleleri Stilleri */
.makale-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.makale-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.makale-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.makale-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.makale-title {
    flex: 1;
}

.makale-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.makale-title h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.makale-title h3 a:hover {
    color: #667eea;
}

.makale-yazarlar {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.makale-aciklama {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.makale-keywords {
    margin-bottom: 1rem;
}

.keyword-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #5850ec;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.makale-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.makale-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    flex: 1;
}

.makale-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.makale-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.makale-actions .btn {
    min-height: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

.makale-actions .btn i {
    font-size: 0.65rem;
}

.makale-actions .btn-incele-modern {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
    min-height: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.makale-actions .btn-pdf-modern {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
    min-height: 32px !important;
    height: 32px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.makale-actions .btn-pdf-modern i {
    font-size: 0.65rem !important;
}

.makale-actions .btn-outline-secondary:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Content Card Styling */
.icerik-card {
    border-left: 4px solid #10b981;
}

/* Main Layout */
.main-layout {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Sol Sidebar */
.dergi-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px; /* Navbar'ın altında kalması için */
    height: fit-content;
    z-index: 10;
}

.sidebar-content {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

/* Sidebar Kapak */
.sidebar-kapak {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-kapak-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0.8rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-kapak-img:hover {
    transform: scale(1.02);
}

.sidebar-kapak-placeholder {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px dashed #cbd5e0;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin: 0 auto;
}

.sidebar-kapak-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

/* Sidebar Bilgiler */
.sidebar-info {
    text-align: center;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sidebar-stats {
    margin-bottom: 1.5rem;
}

.sidebar-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.sidebar-stat i {
    color: #667eea;
    font-size: 0.9rem;
}

.sidebar-action .btn {
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
}

.sidebar-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* İçerik Alanı */
.content-area {
    flex: 1;
    min-width: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .dergi-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }
    
    .sidebar-content {
        padding: 1rem;
    }
    
    .sidebar-kapak {
        margin-bottom: 1rem;
    }
    
    .sidebar-kapak-img {
        max-width: 150px;
    }
    
    .sidebar-kapak-placeholder {
        width: 150px;
        height: 210px;
    }
    
    .sidebar-kapak-placeholder i {
        font-size: 2rem;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
    }
    
    .sidebar-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .sidebar-action .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #718096;
}

/* Empty state içindeki butonlar için küçük boyut */
.empty-state .btn {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
    line-height: 1.5 !important;
    min-height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
}

.empty-state .btn i {
    font-size: 0.85rem !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Tüm form kontrolleri için modern stil - Profil formu gibi */
.form-control:not(.auth-input):not(.profile-input):not(.bio-modern-textarea) {
    border: 2px solid #e9ecef !important; /* Profil formu gibi gri çerçeve */
    border-radius: 12px !important;
    padding: 0.875rem 1rem !important;
    background: white !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important; /* Profil formu gibi gölge yok */
}

.form-control:not(.auth-input):not(.profile-input):not(.bio-modern-textarea):focus {
    border-color: #667eea !important; /* Profil formu gibi mavi çerçeve */
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important; /* Profil formu gibi mavi ışık */
    background: #f8f9ff !important; /* Profil formu gibi açık mavi arka plan */
    outline: none !important;
    /* Hareket animasyonu kaldırıldı */
}

/* Hover efekti kaldırıldı - sadece focus efekti var */

/* Form select için modern stil - Profil formu gibi */
.form-select {
    border: 2px solid #e9ecef !important; /* Profil formu gibi gri çerçeve */
    border-radius: 12px !important;
    padding: 0.875rem 1rem !important;
    background: white !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important; /* Profil formu gibi gölge yok */
}

.form-select:focus {
    border-color: #667eea !important; /* Profil formu gibi mavi çerçeve */
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important; /* Profil formu gibi mavi ışık */
    background: #f8f9ff !important; /* Profil formu gibi açık mavi arka plan */
    outline: none !important;
    /* Hareket animasyonu kaldırıldı */
}

/* Hover efekti kaldırıldı - sadece focus efekti var */


/* --- GÜNCELLENMİŞ MODERN STİLLER --- */

/* Mor Buton (Rengi zorla uyguluyoruz) */
.btn-incele-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.25);
    font-weight: 500;
}

.btn-incele-modern:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(102, 126, 234, 0.35);
}

/* Kartların daha belirgin olması için */
.journal-card-modern {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.08) !important; /* Hafif çerçeve eklendi */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important; /* Gölge koyulaştırıldı */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.journal-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.5rem 2rem rgba(102, 126, 234, 0.15) !important; /* Hover'da morumsu gölge */
    border-color: rgba(102, 126, 234, 0.3) !important;
}

/* Tüm kartın tıklanabilir olması için gerekli (imleci el yapar) */
.card-clickable {
    cursor: pointer;
}