/* ==========================================================
   1. TEMEL AYARLAR, FONTLAR VE RENK DEĞİŞKENLERİ
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* YENİ ESTETİK: Pastel Yeşil/Para Teması */
    --primary-color: #059669; /* Canlı Zümrüt Yeşili (Ana Vurgu) */
    --primary-hover: #047857; /* Buton Hover Rengi */
    
    /* Arka Planlar */
    --bg-light: #f7f7f7; /* Genel Sayfa Arka Planı */
    --bg-dark: #ecfdf5; /* Sidebar Arka Planı (Pastel Mint) */
    --card-bg: #ffffff; /* Kart ve Kutu Arka Planları */
    
    /* Yazı Renkleri */
    --text-dark: #1f2937; /* Ana Metin */
    --text-gray: #6b7280; /* Yan Metin / Açıklama */
    --sidebar-text: #065f46; /* Sidebar Yazıları */
    
    /* Input ve Border (Dark Mode Uyumu İçin Kritik) */
    --input-bg: #f9fafb;
    --border-color: #e5e7eb;

    /* Durum Renkleri */
    --success-color: #10b981; /* Pozitif / Yeşil */
    --warning-color: #f59e0b; /* Bekleyen / Turuncu */
    --danger-color: #ef4444;  /* Hata / Kırmızı */
    
    /* Efektler */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px; /* Köşe Yuvarlaklığı */
    --notification-badge: #ef4444; /* Bildirim Rozeti Rengi */
}

/* DARK MODE DEĞİŞKENLERİ (Gece Modu İçin) */
body.dark-mode {
    --bg-light: #111827;      /* Koyu Lacivert */
    --bg-dark: #1f2937;       /* Sidebar Koyu */
    --card-bg: #1e293b;       /* Kartlar Koyu */
    --text-dark: #f1f5f9;     /* Metinler Beyaz */
    --text-gray: #94a3b8;     /* Yan metinler gri */
    --sidebar-text: #f1f5f9;  /* Sidebar metinleri beyaz */
    
    /* Input ve Border Fix */
    --input-bg: #334155;      /* Input içi koyu gri */
    --border-color: #334155;  /* Çizgiler koyu gri */
    
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

/* Genel Sıfırlama */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

/* Body Yapısı: Hem Login'i ortalar hem Dashboard'u tam ekran yapar */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Login için dikey ortalama */
    align-items: center;     /* Login için yatay ortalama */
}

/* ==========================================================
   2. DASHBOARD LAYOUT (GENEL YAPI)
   ========================================================== */

/* Eğer app-container varsa (Dashboard), body ayarlarını ezer */
.app-container {
    display: flex;
    flex: 1; /* Tüm alanı kapla */
    width: 100%;
    height: 100vh; /* Ekranı tam doldur */
    align-items: stretch; /* Sidebar ve içeriği eşitle */
    justify-content: flex-start; /* Sola yasla */
}

/* 2.1 SIDEBAR (SOL MENÜ) */
.sidebar {
    width: 260px;
    min-width: 260px; /* Küçülmeyi engeller */
    background-color: var(--bg-dark);
    padding: 20px;
    color: var(--sidebar-text);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    border-right: 1px solid var(--border-color); /* Değişken kullanıldı */
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Menü uzunsa kaydır */
}

/* Logo Alanı */
.logo-area-sidebar h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Menü Linkleri */
.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--sidebar-text);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.sidebar-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 2px 5px rgba(5, 150, 105, 0.3);
}

/* Çıkış Butonu */
.sidebar-menu a.logout {
    color: #ef4444;
    margin-top: 30px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.sidebar-menu a.logout:hover {
    background-color: #ef4444;
    color: white !important;
    border-color: #ef4444;
}

/* 2.2 ANA İÇERİK ALANI */
.main-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden; /* Taşmayı engelle */
}

.main-content {
    padding: 30px;
    flex-grow: 1;
    overflow-y: auto; /* Sadece içerik kaydırılsın */
}

/* Dashboard Başlığı */
.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--text-dark); /* Dark Mode için kritik */
}

.dashboard-header p {
    color: var(--text-gray);
    font-size: 14px;
}

/* 2.3 ÜST BAR (HEADER) */
.header {
    background: var(--card-bg);
    padding: 0 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    min-height: 70px;
}

.dashboard-title {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a, 
.theme-toggle-btn {
    color: var(--text-gray);
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icons a:hover, 
.theme-toggle-btn:hover {
    color: var(--primary-color);
}

/* Bildirim Rozeti (Badge) */
.notification-badge {
    position: absolute;
    top: -5px; /* Biraz daha yukarı */
    right: -5px; /* Biraz daha sağa */
    background-color: var(--notification-badge);
    color: white;
    font-size: 10px;
    font-weight: bold;
    /* Flexbox ile tam ortalama */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%; /* Tam yuvarlak */
    border: 2px solid var(--card-bg);
}

/* ==========================================================
   3. KUTUCUKLAR (DASHBOARD CARDS)
   ========================================================== */

.card-grid {
    display: grid;
    /* Responsive Grid: Ekran genişliğine göre otomatik sütun sayısı */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 25px;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
    
    /* Flexbox ile içerik hizalama */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Tüm kartları eşit boya zorlar */
}

/* HOVER SADECE GRİD KARTLARINDA OLSUN */
.card-grid .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Başlık Stili */
.card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    
    /* Başlık tek satır da olsa iki satır da olsa hizayı korur */
    min-height: 32px; 
    display: flex;
    align-items: center;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: auto; /* Değeri aşağıya it */
    line-height: 1.2;
}

/* Kart Değer Renkleri */
.card-value.success { color: var(--success-color); }
.card-value.warning { color: var(--warning-color); }
.card-value.primary { color: var(--primary-color); }

/* Grafik Alanı Kartı */
.dashboard-section .card {
    min-height: 450px;
    justify-content: flex-start;
}

/* ==========================================================
   4. LOGIN & REGISTER EKRANLARI
   ========================================================== */

/* Login Kapsayıcısı (Ortalama) */
.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    margin: auto; /* Body flex olduğu için bu ortalar */
}

.auth-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

.logo-area {
    margin-bottom: 35px;
}

.logo-area h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-area p {
    color: var(--text-gray);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: var(--input-bg); /* Dark mode uyumlu */
    color: var(--text-dark);     /* Dark mode uyumlu */
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Hata Mesaj Kutusu (Login için) */
.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================
   5. MODAL (POP-UP) TASARIMI
   ========================================================== */

.modal-overlay {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Arka plan karartma */
    backdrop-filter: blur(4px); /* Bulanıklık */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid var(--border-color);
}

@keyframes modalSlideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

.close-modal-btn:hover {
    color: #ef4444;
}

.info-box {
    background-color: #eff6ff;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #1e3a8a;
    line-height: 1.5;
}

/* ==========================================================
   6. BİLDİRİM DROPDOWN (AÇILIR PENCERE)
   ========================================================== */

.notification-dropdown {
    display: none; /* Başlangıçta gizli */
    position: absolute;
    top: 60px; /* Zilin biraz altı */
    right: 80px; /* Konum ayarı */
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    animation: slideDown 0.2s ease-out;
}

.notification-dropdown.active {
    display: block; /* JS ile bu sınıf eklenince görünür */
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-light); /* Koyu modda uyumlu */
}

.dropdown-header span {
    font-size: 12px;
    color: var(--primary-color);
    cursor: pointer;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notif-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.notif-item:hover {
    background-color: var(--bg-light);
}

.notif-item.unread {
    background-color: rgba(5, 150, 105, 0.05); /* Çok hafif yeşil */
}

.notif-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
}

.notif-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.notif-content p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.notif-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 5px;
    display: block;
}

.dropdown-footer {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid var(--border-color);
}

.dropdown-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* MOBİL UYUMLULUK (RESPONSIVE) İÇİN EKSTRALAR */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column; /* Mobilde sidebar üste gelir veya gizlenir */
    }
    
    .sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 10px;
    }
    
    .sidebar-menu {
        display: flex; /* Menüyü yatay yapabiliriz veya hamburger menü */
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .sidebar-menu a {
        font-size: 12px;
        padding: 8px;
    }
    
    .header {
        padding: 10px 15px;
    }
    
    .main-content {
        padding: 15px;
    }
}