/*
Theme Name: SözlükPress
Theme URI: http://firatcelik.com.tr
Author: Fırat Çelik
Description: Sidebar çökme hatası giderilmiş V4.9 Final.
Version: 4.9
Text Domain: sozlukpress
*/

:root {
    --bg-color: #f2f2f2;
    --content-bg: #ffffff;
    --sidebar-bg: #ffffff;
    --text-color: #333333;
    --primary-green: #52a447;
    --border-color: #e0e0e0;
    --meta-color: #888888;
}

* { box-sizing: border-box; }
a { color: var(--text-color) !important; text-decoration: none !important; }

body { 
    font-family: -apple-system, sans-serif; 
    margin: 0; display: flex; flex-direction: column; height: 100vh; 
    background: var(--bg-color); color: var(--text-color); overflow: hidden; 
}

/* Header & Logo */
.main-header { background: var(--sidebar-bg); border-bottom: 1px solid var(--border-color); height: 50px; display: flex; align-items: center; z-index: 1000; }
.logo-area { width: 300px; min-width: 300px; padding-left: 20px; border-right: 1px solid var(--border-color); display: flex; align-items: center; height: 100%; }
.logo { font-size: 18px; font-weight: 800; color: var(--primary-green) !important; }

/* Sidebar Stabilite */
.main-wrapper { display: flex; flex-grow: 1; overflow: hidden; }
#sidebar { width: 300px; min-width: 300px; max-width: 300px; background: var(--sidebar-bg); border-right: 1px solid var(--border-color); display: flex; flex-direction: column; }
.topic-list-container a { display: flex; justify-content: space-between; padding: 10px 15px; font-size: 13px; border-bottom: 1px solid var(--border-color); }
.topic-list-container a:hover { background: #f9f9f9; }

/* İçerik */
#content { flex-grow: 1; background: var(--content-bg); overflow-y: auto; padding: 20px 40px; }
.topic-title a { color: var(--primary-green) !important; font-size: 22px; font-weight: bold; }