/* =============================================================
   DLE Native Forum - Premium CSS
   ============================================================= */

/* ---- DEĞİŞKENLER ---- */
:root {
    --df-accent:       #38bdf8; /* Neon Mavi */
    --df-accent-hover: #00aeef; /* Koyu Mavi */
    --df-text:         #f8fafc; /* Parlak Beyaz Ana Metinler */
    --df-text-muted:   #94a3b8; /* Tok Gri Alt Metinler */
    --df-border:       #203047; /* Gece Mavisi Çizgiler */
    --df-bg:           #0f1724; /* Kutu Arkaplanları */
    --df-bg-soft:      #131d2d; /* Hover Arkaplanları */
    --df-radius:       8px;
}

/* ---- GENEL ---- */
.df-page-wrap { display: flex; flex-direction: column; gap: 20px; width: 100%; }
a { color: var(--df-accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--df-accent-hover); }

/* ---- HEADER (MYBB STYLE BOX) ---- */
.df-main-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px; /* İçten boşluk */
    background: #f8fafc; /* Breadcrumb ile aynı arkaplan */
    border: 1px solid var(--df-border);
    border-radius: 4px; /* Breadcrumb ile aynı köşe */
    margin-bottom: 0px; /* Breadcrumb ile arası gap tarafından ayarlanır */
}
@media (min-width: 768px) { .df-main-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.df-main-header-brand { display: flex; align-items: center; gap: 14px; }
.df-main-header-icon { 
    width: 40px; height: 40px; border-radius: 6px; background: var(--df-accent); 
    display: flex; align-items: center; justify-content: center; color: #000; font-size: 18px; font-weight: 900; 
    box-shadow: 0 2px 4px rgba(245,158,11,.2);
}
.df-main-title { font-size: 18px; font-weight: 800; color: var(--df-text); margin: 0; line-height: 1.2; }
.df-main-subtitle { font-size: 11px; color: var(--df-text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.03em; }
.df-main-header-actions { display: flex; gap: 10px; align-items: center; }

/* ---- BUTONLAR ---- */
.df-btn-new-topic {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
    background: var(--df-accent); color: #000; font-size: 11px; font-weight: 800;
    text-transform: uppercase; border-radius: 4px; text-decoration: none; box-shadow: 0 2px 6px rgba(245,158,11,.2); transition: all .2s;
}
.df-btn-new-topic:hover { background: var(--df-accent-hover); transform: translateY(-1px); text-decoration: none; }

/* ---- ARAMA ---- */
.df-search-form { position: relative; }
.df-search-input {
    background: #fff; border: 1px solid var(--df-border); border-radius: 4px; /* Köşeli */
    padding: 8px 14px; font-size: 13px; color: var(--df-text); width: 180px; transition: all .2s;
}
.df-search-input:focus { width: 220px; border-color: var(--df-accent); outline: none; box-shadow: 0 0 0 2px rgba(245,158,11,.1); }
.df-search-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--df-text-muted); background: none; border: none; cursor: pointer; }

/* ---- KATEGORİ BLOĞU ---- */
.df-category-block {
    background: var(--df-bg);
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* ---- BAŞLIK (MYBB TARZI) ---- */
.df-cat-head {
    background: #f1f5f9;
    padding: 0 16px;
    border-bottom: 2px solid var(--df-accent);
}
.df-cat-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--df-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    height: 40px;
}
.df-cat-title .fa { color: var(--df-accent); margin-right: 10px; font-size: 14px; }

/* ---- TABLO YAPISI ---- */
.df-forum-list { width: 100%; }

/* Sütun Başlıkları */
.df-list-header {
    display: grid;
    grid-template-columns: 44px 1fr 120px 200px;
    background: var(--df-bg);
    border-bottom: 1px solid var(--df-border);
    font-size: 10px;
    font-weight: 700;
    color: var(--df-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
}
.df-list-header > div:nth-child(3),
.df-list-header > div:nth-child(4) {
    text-align: center;
}
/* Kategori sayfası topic header: kolon genişlikleri topic-row ile eşleşmeli */
.df-list-header.df-topics-header {
    grid-template-columns: 44px 1fr 140px 200px;
}
@media (max-width: 767px) { .df-list-header { display: none; } }

/* Forum Satırları */
.df-forum-row {
    display: grid;
    grid-template-columns: 44px 1fr 120px 200px;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--df-border);
    transition: background .1s ease-in-out;
    min-height: 52px;
}
.df-forum-row:last-child { border-bottom: none; }
.df-forum-row:hover { background: #fafbfc; }

/* ---- SÜTUN DETAYLARI ---- */

/* İkon Sütunu */
.df-col-icon { display: flex; align-items: center; justify-content: center; }
.df-icon-box {
    width: 36px; height: 36px; border-radius: 4px;
    background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--df-accent); font-size: 16px;
}

/* Ana İçerik Sütunu */
.df-col-main { padding: 0 16px; overflow: hidden; }
.df-title-link {
    display: inline-block; font-size: 14px; font-weight: 700; color: var(--df-text); 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
    line-height: 1.4;
}
.df-title-link:hover { color: var(--df-accent); }
.df-desc-text { font-size: 12px; color: var(--df-text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* İstatistik Sütunu */
.df-col-stats { 
    display: flex; flex-direction: row; justify-content: center; gap: 16px; 
    border-left: 1px solid var(--df-border); border-right: 1px solid var(--df-border); 
    height: 100%; align-items: center;
}
@media (max-width: 767px) { .df-col-stats { display: none; } }
.df-stat-num { 
    font-size: 14px; font-weight: 700; color: var(--df-text); 
    display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.2;
}
.df-stat-num small { font-size: 9px; font-weight: 600; color: var(--df-text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 1px; }

/* Son Mesaj Sütunu */
.df-col-last { 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 10px; overflow: hidden; text-align: center;
}
@media (max-width: 767px) { .df-col-last { display: none; } }
.df-last-post-wrap { 
    display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; 
}
.df-last-title {
    font-size: 13px; font-weight: 600; color: var(--df-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.df-last-title:hover { color: var(--df-accent); }
.df-last-meta { font-size: 11px; color: var(--df-text-muted); display: flex; gap: 4px; align-items: center; }
.df-last-meta .df-sep { opacity: 0.4; }
.df-no-post { font-size: 11px; color: #cbd5e1; font-style: italic; }

/* ---- İSTATİSTİK KUTUSU ---- */
.df-stats-box { background: var(--df-bg); border: 1px solid var(--df-border); border-radius: var(--df-radius); overflow: hidden; margin-top: 8px; }
.df-stats-header { padding: 10px 16px; border-bottom: 1px solid var(--df-border); background: #f8fafc; display: flex; justify-content: space-between; align-items: center; }
.df-stats-title { font-size: 12px; font-weight: 800; color: var(--df-text); text-transform: uppercase; letter-spacing: .02em; }
.df-stats-title i { color: var(--df-accent); margin-right: 6px; }
.df-stats-last-member { font-size: 12px; color: var(--df-text-muted); }
.df-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .df-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.df-stat-item { padding: 16px; text-align: center; border-top: 1px solid var(--df-border); }
.df-stat-item:not(:last-child) { border-right: 1px solid var(--df-border); }
@media (max-width: 767px) { .df-stat-item:nth-child(even) { border-right: none; } }
.df-stat-num-big { font-size: 22px; font-weight: 900; color: var(--df-text); }
.df-stat-label { font-size: 10px; color: var(--df-text-muted); text-transform: uppercase; letter-spacing: .03em; margin-top: 4px; font-weight: 600; }


/* ---- KATEGORİ SAYFASI: KONU LİSTESİ ---- */

/* Hero Alanı (Başlık) */
.df-category-hero { 
    display: flex; flex-direction: column; gap: 16px; 
    padding: 20px; background: var(--df-bg); border: 1px solid var(--df-border); 
    border-radius: var(--df-radius); margin-bottom: 16px; 
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
@media (min-width: 768px) { .df-category-hero { flex-direction: row; align-items: center; justify-content: space-between; } }
.df-hero-info { display: flex; align-items: center; gap: 16px; }
.df-hero-icon { 
    width: 50px; height: 50px; border-radius: 8px; background: rgba(245,158,11,.08); 
    display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--df-accent); 
}
.df-hero-title { font-size: 20px; font-weight: 800; color: var(--df-text); margin: 0; }
.df-hero-desc  { font-size: 12px; color: var(--df-text-muted); margin-top: 4px; }
.df-hero-actions { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
@media (min-width: 768px) { .df-hero-actions { margin-top: 0; } }

/* Konu Satırı (Topic Row) */
.df-topic-row {
    display: grid;
    grid-template-columns: 44px 1fr 140px 200px;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--df-border);
    transition: background .15s;
}
.df-topic-row:last-child { border-bottom: none; }
.df-topic-row:hover { background: #fafbfc; }
.df-topic-row.df-topic-pinned { background: rgba(245,158,11,.03); }

/* İkon Sütunu */
.df-topic-row .df-col-icon { text-align: center; color: var(--df-text-muted); font-size: 16px; }
.df-topic-row .df-col-icon .fa-thumb-tack { color: var(--df-accent); }
.df-topic-row .df-col-icon .fa-lock { color: var(--df-danger); }

/* Ana Başlık Sütunu */
.df-topic-row .df-col-main { padding: 0 16px; overflow: hidden; }
.df-topic-row .df-title-link { 
    display: inline-block; font-size: 14px; font-weight: 700; color: var(--df-text); 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; line-height: 1.4;
}
.df-topic-row .df-title-link:hover { color: var(--df-accent); }
.df-topic-row .df-topic-meta { font-size: 11px; color: var(--df-text-muted); margin-top: 3px; }

/* İstatistik Sütunu */
.df-topic-row .df-col-stats { 
    display: flex; flex-direction: row; justify-content: center; gap: 16px; 
    border-left: 1px solid var(--df-border); border-right: 1px solid var(--df-border); 
    padding: 0 16px; height: 100%; align-items: center;
}
@media (max-width: 767px) { .df-topic-row .df-col-stats { display: none; } }

/* Son Mesaj Sütunu */
.df-topic-row .df-col-last { 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 10px; overflow: hidden; text-align: center;
}
@media (max-width: 767px) { .df-topic-row .df-col-last { display: none; } }

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .df-topic-row {
        grid-template-columns: 40px 1fr;
        gap: 0;
    }
    .df-topic-row .df-col-main { padding: 0 12px; }
}

/* ---- FORM YAPISI (KLASİK) ---- */

/* Kart */
.df-card {
    background: var(--df-bg);
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Başlık */
.df-card-header {
    padding: 12px 20px;
    background: #f4f5f7;
    border-bottom: 1px solid var(--df-border);
}
.df-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--df-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.df-card-title .fa { color: var(--df-accent); }

/* Input */
.df-input {
    width: 100%;
    background: #fff;
    color: var(--df-text);
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.df-input:focus {
    border-color: var(--df-accent);
    box-shadow: 0 0 0 2px rgba(245,158,11,.15);
}
.df-input::placeholder { color: #a0aec0; font-weight: 400; }

/* Editor Kutusu */
.df-editor-box {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden;
}

/* Buton */
.df-btn-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--df-accent); color: #000; 
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    padding: 10px 24px; border-radius: 4px;
    border: none; cursor: pointer; text-decoration: none;
    transition: background .15s;
}
.df-btn-submit:hover { background: var(--df-accent-hover); }
.df-btn-submit:active { background: #b45309; }

/* İptal Butonu */
.df-btn-back {
    font-size: 11px; font-weight: 700; color: #4a5568;
    text-transform: uppercase; display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 4px; transition: all .15s;
    background: #edf2f7; border: 1px solid #e2e8f0; text-decoration: none;
}
.df-btn-back:hover { background: #e2e8f0; color: #1a202c; text-decoration: none; }

/* Uyarı Kutusu */
.df-alert {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    border: 1px solid;
    background: transparent;
}
.df-alert-error {
    background: #fff5f5;
    border-color: #feb2b2;
    color: #c53030;
}
.df-alert-success {
    background: #f0fff4;
    border-color: #9ae6b4;
    color: #276749;
}

/* Form Layout */
.df-form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.df-form-group { display: flex; flex-direction: column; gap: 6px; }
.df-form-label {
    display: block; font-size: 12px; font-weight: 600; color: #4a5568;
    text-transform: uppercase; letter-spacing: 0.03em;
}

/* ---- FORM ALT BUTONLARI ---- */
.df-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--df-border);
}

.df-btn-back {
    background: transparent !important;
    border: none !important;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}
.df-btn-back:hover {
    color: #ef4444;
    text-decoration: none;
    background: transparent !important;
}

.df-btn-submit {
    margin-left: auto;
}

/* ---- TOPIC VIEW: KLASİK (SOL SIDEBAR) ---- */

/* Ana Post Kutusu */
.df-post {
    display: flex;
    flex-direction: row;
    background: var(--df-bg);
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    margin-bottom: 12px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .df-post { flex-direction: column; }
}

/* SOL SÜTUN: Kullanıcı Alanı */
.df-post-user {
    width: 160px;
    min-width: 160px;
    background: #f8fafc;
    border-right: 1px solid var(--df-border);
    padding: 16px 12px;
    text-align: center;
}
@media (max-width: 767px) {
    .df-post-user { 
        width: 100%; 
        border-right: none; 
        border-bottom: 1px solid var(--df-border);
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
}

.df-user-panel { display: flex; flex-direction: column; align-items: center; gap: 8px; }
@media (max-width: 767px) {
    .df-user-panel { flex-direction: row; align-items: center; }
}

.df-post-user .df-avatar { 
    width: 80px; height: 80px; border-radius: 4px; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 4px rgba(0,0,0,.1); 
}
@media (max-width: 767px) {
    .df-post-user .df-avatar { width: 40px; height: 40px; }
}

.df-post-user .df-post-username { 
    font-size: 13px; font-weight: 700; color: var(--df-text); text-decoration: none; 
}
.df-post-user .df-post-username:hover { color: var(--df-accent); }

.df-post-user .df-user-stats { 
    font-size: 10px; color: var(--df-text-muted); display: flex; flex-direction: column; gap: 2px; margin-top: 4px;
}
@media (max-width: 767px) {
    .df-post-user .df-user-stats { display: none; }
}

/* SAĞ SÜTUN: Mesaj Alanı */
.df-post-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.df-post-header {
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--df-border);
    display: flex;
    align-items: center;
    font-size: 11px;
    color: var(--df-text-muted);
}
.df-post-num { margin-left: auto; font-weight: 700; color: var(--df-text); }

.df-post-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    flex: 1;
}

.df-post-footer {
    padding: 8px 16px;
    border-top: 1px solid var(--df-border);
    background: #fff;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* OP (Konu Sahibi) Vurgusu */
.df-post.df-post-op { border-color: var(--df-accent); border-width: 2px; }
.df-post.df-post-op .df-post-user { background: rgba(245,158,11,.05); }

/* Admin Bar */
.df-admin-bar { background: #1e293b; color: #fff; padding: 8px 12px; border-radius: 4px; margin-bottom: 12px; font-size: 11px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.df-admin-bar a { color: #cbd5e1; }
.df-admin-bar a:hover { color: var(--df-accent); }

/* Butonlar */
.df-btn-action {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.df-btn-action:hover { background: #e2e8f0; color: #111; text-decoration: none; }

/* ---- TOPIC HEADER: KLASİK BAR (MYBB STYLE) ---- */
.df-topic-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    background: #f4f5f7;
    border: 1px solid var(--df-border);
    border-radius: 4px;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .df-topic-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.df-topic-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}
.df-topic-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--df-text-muted);
    text-transform: uppercase;
    display: none;
}
.df-topic-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--df-text);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.df-topic-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.df-topic-bar .df-btn-follow {
    background: transparent;
    border: 1px solid var(--df-border);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--df-text-muted);
    cursor: pointer;
    text-decoration: none;
}
.df-topic-bar .df-btn-follow:hover {
    border-color: var(--df-accent);
    color: var(--df-accent);
    background: rgba(245,158,11,.05);
    text-decoration: none;
}

/* ---- BREADCRUMB (MYBB/XENFORO STYLE BAR) ---- */
.df-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}
.df-breadcrumb-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.15s;
}
.df-breadcrumb-link:hover {
    color: var(--df-accent);
    text-decoration: none;
}
.df-breadcrumb-sep {
    font-size: 8px;
    color: #94a3b8;
    opacity: 0.7;
}
.df-breadcrumb-current {
    color: #1e293b;
    font-weight: 700;
}
@media (max-width: 640px) {
    .df-breadcrumb {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* ---- PM (ÖZEL MESAJ) SAYFASI ---- */

/* Header'daki Başlık ve Buton Hizalaması */
.df-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Başlık solda, butonlar sağda */
    flex-wrap: wrap; /* Mobilde alt alta düşsün */
    gap: 10px;
}

/* Buton Grubu */
.df-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PM Liste Tablosu */
.df-pm-list {
    display: flex;
    flex-direction: column;
}
.df-pm-row {
    display: grid;
    grid-template-columns: 40px 1fr 80px 120px; /* Avatar - İçerik - Gönderen - Tarih */
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--df-border);
    transition: background .15s;
    gap: 16px;
}
.df-pm-row:last-child { border-bottom: none; }
.df-pm-row:hover { background: #fafbfc; }
.df-pm-row.unread { background: rgba(245,158,11,.05); font-weight: 700; } /* Okunmamış mesaj vurgusu */

/* Avatar */
.df-pm-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

/* İçerik */
.df-pm-content { overflow: hidden; }
.df-pm-title { display: block; font-size: 14px; font-weight: 700; color: var(--df-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.df-pm-title:hover { color: var(--df-accent); }
.df-pm-snippet { font-size: 12px; color: var(--df-text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Tarih ve Gönderen */
.df-pm-meta { font-size: 11px; color: var(--df-text-muted); text-align: right; }

/* Mobil Uyum */
@media (max-width: 767px) {
    .df-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .df-pm-row {
        grid-template-columns: 30px 1fr; /* Sadece Avatar ve Başlık */
        gap: 10px;
    }
    .df-pm-meta { display: none; } /* Mobilde tarih/gönderen gizlensin */
}
/* ---- PM OKUMA (READ) ---- */
.df-pm-read-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.df-pm-read-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--df-border);
}
.df-pm-read-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--df-text);
}
.df-pm-read-meta {
    font-size: 12px;
    color: var(--df-text-muted);
    margin-top: 4px;
}
.df-pm-messages {
    display: flex;
    flex-direction: column;
    gap: 0; /* Mesajlar birleşik dursun */
}
/* Okuma modunda postlar arası boşluğu azalt */
.df-pm-messages .df-post {
    border-radius: 0;
    margin-bottom: 0;
    border-top: none;
}
.df-pm-messages .df-post:first-child {
    border-radius: var(--df-radius) var(--df-radius) 0 0;
    border-top: 1px solid var(--df-border);
}
.df-pm-messages .df-post:last-child {
    border-radius: 0 0 var(--df-radius) var(--df-radius);
    margin-bottom: 0;
}

/* Sidebar PM Butonu */
.df-btn-pm {
    display: block;
    margin-top: 10px;
    padding: 6px 0;
    background: #f1f5f9;
    border: 1px solid var(--df-border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--df-text-muted);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .15s;
}
.df-btn-pm:hover {
    background: var(--df-accent);
    border-color: var(--df-accent);
    color: #000;
    text-decoration: none;
}
@media (max-width: 767px) {
    .df-btn-pm {
        margin: 0;
        padding: 4px 10px;
        display: inline-block;
    }
}
/* ---- MOBİL MUCİZİ :)) ---- */
@media screen and (max-width: 767px) {
    
    /* 1. Bootstrap veya DLE'den gelen 'hidden-xs' gibi kuralları ez */
    .hidden-xs, .hidden-sm {
        display: none !important; /* Biz gizlemek istiyorsak gizlensin ama linkler için aşağıya bak */
    }

    /* 2. Ana Sayfa ve Konu Listesi Satırları (Grid Düzeni) */
    .df-forum-row, 
    .df-topic-row {
        display: grid !important; /* Block yapma, Grid kalsın */
        grid-template-columns: 40px 1fr !important; /* Sadece İkon + Başlık */
        align-items: center !important;
        gap: 0 !important;
    }

    /* 3. Gereksiz Sütunları Mobilde Gizle (Taşma olmasın) */
    .df-col-stats,
    .df-col-last {
        display: none !important; 
    }

    /* 4. İçerik Sütununu (Başlığın olduğu yer) Zorla Göster */
    .df-col-main {
        display: block !important;
        width: 100% !important;
        padding: 0 10px !important;
        min-width: 0 !important; /* Text taşmasını engeller */
        overflow: visible !important; /* Kesinlikle görünür olsun */
    }

    /* 5. Link ve Yazıları Zorla Göster (Kırmızı Çizgi) */
    .df-title-link,
    .df-desc-text,
    .df-topic-meta {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #1e293b !important; /* Yazı rengi siyah olsun */
        font-size: 14px !important;
        font-weight: 700 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .df-title-link {
        color: #f59e0b !important; /* Link rengi turuncu olsun */
    }

    /* 6. İkon Alanı */
    .df-col-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

/* ---- BİLDİRİM (NOTIFICATIONS) ---- */

.df-notif-list {
    display: flex;
    flex-direction: column;
}

.df-notif-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--df-border);
}
.df-notif-row:last-child { border-bottom: none; }
.df-notif-row:hover { background: #fafbfc; margin: 0 -20px; padding: 14px 20px; border-radius: 4px; }

.df-notif-icon {
    width: 32px; height: 32px; border-radius: 50%; 
    background: rgba(245,158,11,.1); color: var(--df-accent);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.df-notif-icon.is-read { background: #f1f5f9; color: #94a3b8; }

.df-notif-content { flex: 1; }
.df-notif-text { font-size: 13px; color: var(--df-text); line-height: 1.5; }
.df-notif-text b { color: var(--df-text); font-weight: 700; }
.df-notif-date { display: block; font-size: 11px; color: var(--df-text-muted); margin-top: 4px; }

/* Boş Bildirim */
.df-empty { padding: 30px; text-align: center; color: var(--df-text-muted); font-size: 13px; }

.df-col-main, .df-flex-fill { min-width: 0; }


.df-notif-badge {
    position: absolute; top: -5px; right: -5px;
    background: #ef4444; color: #fff;
    font-size: 9px; font-weight: 800;
    min-width: 16px; height: 16px;
    border-radius: 50%; border: 2px solid #f4f5f7;
    display: inline-flex; align-items: center; justify-content: center;
}

/* ---- SUB-FORUMS (ALT KATEGORİ LİNKLERİ) ---- */
.df-subcats-wrap {
    margin-top: 5px;
    font-size: 11px;
    color: var(--df-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.df-subcat-link {
    color: var(--df-text);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.df-subcat-link i {
    font-size: 10px;
    color: var(--df-accent);
    opacity: 0.8;
}

.df-subcat-link:hover {
    color: var(--df-accent);
    text-decoration: underline;
}

/* ---- MYBB STYLE LAST POST AVATAR ---- */
.df-last-post-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.df-last-avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px; /* İstersen 50% yapıp yuvarlak kullanabilirsin */
    object-fit: cover;
    border: 1px solid var(--df-border);
    flex-shrink: 0;
}

.df-last-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.df-last-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--df-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.df-last-user {
    color: var(--df-accent);
    font-weight: 600;
}

.df-last-meta {
    font-size: 11px;
    color: var(--df-text-muted);
    margin-top: 2px;
}


/* ---- SIDEBAR FORUM SON KONULAR BLOGU ---- */
.df-side-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--df-bg);
    border-bottom: 1px solid var(--df-border);
    transition: all 0.2s ease;
}

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

.df-side-item:hover {
    background: var(--df-bg-soft);
}

.df-side-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--df-border);
}

.df-side-info {
    flex: 1;
    min-width: 0; /* Metin taşmasını önler */
}

.df-side-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--df-text) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    margin-bottom: 2px;
}

.df-side-title:hover {
    color: var(--df-accent) !important;
}

.df-side-meta {
    font-size: 11px;
    margin-bottom: 3px;
}

.df-side-author {
    color: var(--df-accent);
    font-weight: 700;
}

.df-side-sep {
    color: #cbd5e1;
    margin: 0 4px;
}

.df-side-cat {
    color: var(--df-text-muted);
}

.df-side-stats {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.df-side-stats i {
    margin-right: 2px;
}

/* ---- MYBB STYLE: YATAY İSTATİSTİK PİLLERİ ---- */
.df-pills-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.df-pill {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: stretch;
    background: #475569;
    border-radius: 4px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: transform .15s;
}
.df-pill:hover { transform: translateY(-1px); }
.df-pill-body {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
}
.df-pill-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .85;
}
.df-pill-sep {
    opacity: .3;
    font-weight: 300;
    font-size: 14px;
}
.df-pill-val {
    font-size: 16px;
    font-weight: 800;
}
.df-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: rgba(0,0,0,.15);
    border-left: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
    color: rgba(255,255,255,.8);
}

/* ---- MYBB STYLE: FORUM BİLGİLERİ BLOĞU ---- */
.df-info-block {
    background: var(--df-bg);
    border: 1px solid var(--df-border);
    border-radius: var(--df-radius);
    overflow: hidden;
}
.df-info-head {
    background: var(--df-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.df-info-head-title {
    font-size: 12px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.df-info-head-title i {
    font-size: 14px;
}
.df-info-body {
    padding: 14px 16px;
}
.df-info-row {
    font-size: 13px;
    color: var(--df-text);
    line-height: 1.6;
}
.df-info-row strong {
    color: var(--df-text);
    font-weight: 700;
}
.df-info-row a {
    color: var(--df-accent);
    font-weight: 600;
}

@media (max-width: 767px) {
    .df-pills-bar { flex-direction: column; }
    .df-pill { min-width: 100%; }
}

/* ---- FOOTER LİNKLER ---- */
.df-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 16px;
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--df-text-muted);
}
.df-footer-links a {
    color: var(--df-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
}
.df-footer-links a:hover {
    color: var(--df-accent);
}
.df-footer-links a i {
    font-size: 12px;
}

/* ==================================================================== */
/* ALTYAZIDB - GECE MAVİSİ, SEKMELER VE SOHBET YAMASI                   */
/* ==================================================================== */

/* 1. Orijinal Dosyadaki Sabit Beyazlıkları Gece Mavisine Çevir */
.df-main-header, .df-breadcrumb, .df-stats-header, .df-card-header, .df-post-user, .df-post-header {
    background: #0a111c !important;
    border-color: var(--df-border) !important;
}
.df-cat-head, .df-info-head {
    background: #182538 !important;
    border-color: var(--df-border) !important;
}
.df-search-input, .df-input, .df-editor-box {
    background: #131d2c !important;
    color: var(--df-text) !important;
    border-color: var(--df-border) !important;
}
.df-btn-action, .df-btn-pm, .df-btn-back {
    background: #1e293b !important;
    color: #cbd5e1 !important;
    border-color: var(--df-border) !important;
}
.df-btn-action:hover, .df-btn-pm:hover {
    background: var(--df-accent) !important;
    color: #0a111c !important;
}
.df-pills-bar .df-pill { background: #141f30 !important; border-color: var(--df-border) !important; }
.df-info-head-title { color: var(--df-text) !important; }

/* 2. SEKMELER (TABS) TASARIMI */
.df-tabs-container {
    display: flex; gap: 8px; border-bottom: 2px solid var(--df-accent); margin-bottom: 25px;
}
.df-tab-btn {
    background: #141f30; border: none; padding: 14px 28px;
    color: #94a3b8; font-weight: 800; font-size: 13px; text-transform: uppercase;
    border-radius: 8px 8px 0 0; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 10px; outline: none;
}
.df-tab-btn:hover { background: #1e2b40; color: #ffffff; }
.df-tab-btn.active { background: var(--df-accent); color: #0a111c; }

.df-tab-content { display: none; animation: fadeIn 0.4s ease; }
.df-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* 3. SOHBET KUTUSU (CHAT) KARANLIK MOD (Hastane Beyazını Yok Eder) */
.mod-chat-container { background: var(--df-bg) !important; border-color: var(--df-border) !important; }
.mod-chat-header { background: #182538 !important; border-bottom: 1px solid var(--df-border) !important; }
.mod-chat-list { background: #0a111c !important; }
.mod-chat-row { border-bottom: 1px solid rgba(30, 43, 64, 0.5) !important; color: var(--df-text) !important; }
.mod-chat-row:hover { background: rgba(56, 189, 248, 0.03) !important; }
.mod-chat-form { background: var(--df-bg) !important; border-top: 1px solid var(--df-border) !important; }
.mod-chat-form textarea { background: #131d2c !important; color: #fff !important; border: 1px solid var(--df-border) !important; }

/* 4. SOHBET KULLANICI İSİMLERİ (Orijinal Renkleri Korur, Neon Parlaklık Katar) */
.mod-chat-row a.mod-chat-user, .mod-chat-row b, .mod-chat-row strong { 
    font-weight: 900 !important; font-size: 14px !important; text-decoration: none !important; margin-right: 6px !important;
}
.mod-chat-row a.mod-chat-user:hover { filter: brightness(1.3) !important; }
.mod-chat-row a:not(.mod-chat-user) { color: var(--df-accent) !important; }

/* ==================================================================== */
/* 5. ARKA PLAN VE HOVER (ÜZERİNE GELİNCE BEYAZ OLMA) DÜZELTMESİ        */
/* ==================================================================== */

/* Sitenin en dış arka planını saf siyahtan gece mavisine çevirir */
body, .forum-master-container, main.main {
    background-color: #0a111c !important; 
}

/* Kategori ve konuların üzerine gelince beyaz olmasını engeller, koyu lacivert yapar */
.df-forum-row:hover, 
.df-topic-row:hover, 
.df-pm-row:hover, 
.df-side-item:hover,
.df-notif-row:hover {
    background-color: #131d2d !important; 
}

/* ==================================================================== */
/* 6. SOHBET (CHAT) MODÜLÜ TİPOGRAFİ VE OKUNABİLİRLİK YAMASI            */
/* ==================================================================== */

/* Mesaj Metinleri (Daha büyük, parlak beyaz ve ferah satır aralığı) */
.mod-chat-text-inline, 
.mod-chat-text-inline p { 
    font-size: 15px !important; 
    color: #f8fafc !important; 
    line-height: 1.6 !important; 
    font-weight: 500 !important;
}

/* Tarih ve Saat Bilgisi */
.mod-chat-date { 
    font-size: 12px !important; 
    color: #64748b !important; 
    font-weight: 600 !important;
    margin-left: 10px !important;
}

/* Mesaj Yazma Kutusu (Daha büyük, rahat yazım alanı) */
.mod-chat-form textarea { 
    font-size: 14.5px !important; 
    color: #ffffff !important; 
    padding: 14px 16px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

/* Kurallara Uymayanlar vs. Alt Bilgi Yazısı */
.mod-chat-send span {
    font-size: 12.5px !important;
    color: #94a3b8 !important;
}

/* Gönder Butonunu Daha Tok ve Dikkat Çekici Yapma */
.mod-chat-btn-primary {
    font-size: 13px !important;
    font-weight: 800 !important;
    padding: 10px 24px !important;
    letter-spacing: 0.5px !important;
}

/* ==================================================================== */
/* 7. SOHBET ODASI TİPOGRAFİ VE EDİTÖR KARANLIK MOD YAMASI              */
/* ==================================================================== */

/* --- 1. Mesaj Metinleri (Daha büyük, okunabilir ve net font) --- */
.mod-chat-container {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.mod-chat-text-inline, 
.mod-chat-text-inline p {
    font-size: 15px !important;
    color: #f8fafc !important; /* Parlak beyaz */
    line-height: 1.6 !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}

/* Tarih ve Saat */
.mod-chat-date {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 700 !important;
}

/* --- 2. DLE Gelişmiş Editör Karanlık Modu (Beyazlığı Yok Eder) --- */
.mod-chat-editor .bb-editor,
.mod-chat-editor .fr-box,
.mod-chat-editor .tox-tinymce {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid var(--df-border) !important;
    background: #0f1724 !important;
}

/* Mesaj Yazılan Alanın İçi */
.mod-chat-editor textarea,
.mod-chat-editor iframe,
.mod-chat-editor .fr-wrapper,
.mod-chat-editor .fr-element {
    background-color: #131d2c !important;
    color: #f8fafc !important;
    font-size: 15px !important;
    min-height: 70px !important;
    padding: 12px !important;
    border: none !important;
}
.mod-chat-editor textarea::placeholder { color: #64748b !important; }

/* Editör Araç Çubuğu (B, I, U, İfadeler vs. arka planı) */
.mod-chat-editor .bb-pane,
.mod-chat-editor .fr-toolbar,
.mod-chat-editor .tox-editor-header {
    background-color: #182538 !important;
    border-bottom: 1px solid var(--df-border) !important;
    padding: 8px !important;
}

/* Araç Çubuğu İkonları */
.mod-chat-editor .bb-btn,
.mod-chat-editor .fr-command,
.mod-chat-editor .tox-tbtn {
    color: #cbd5e1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* İkonların Üzerine Gelince (Hover) */
.mod-chat-editor .bb-btn:hover,
.mod-chat-editor .fr-command:hover,
.mod-chat-editor .tox-tbtn:hover {
    background-color: var(--df-accent) !important;
    color: #0a111c !important;
    border-radius: 4px !important;
}

/* Gönder Butonu Büyütme */
.mod-chat-btn-primary {
    font-size: 13px !important;
    font-weight: 800 !important;
    padding: 10px 24px !important;
    letter-spacing: 0.5px !important;
}

/* ==================================================================== */
/* 8. KONU İÇİ (TOPIC VIEW) VE GENEL EDİTÖR KARANLIK MOD YAMASI         */
/* ==================================================================== */

/* 1. Konu Başlık Barı ve Yazılar */
.df-topic-bar { background: #0a111c !important; border-color: var(--df-border) !important; }
.df-topic-title { color: #f8fafc !important; }

/* 2. Mesaj İçeriği (Karanlıkta ezilmemesi için parlak beyaz ve büyük font) */
.df-post-content { 
    color: #f8fafc !important; 
    font-size: 15px !important; 
    line-height: 1.7 !important; 
    font-weight: 500 !important;
}

/* 3. Mesaj Altı Buton Alanı (Footer Beyazlığını yok eder) */
.df-post-footer { 
    background: #0a111c !important; 
    border-top: 1px solid var(--df-border) !important; 
}

/* 4. Uyarı Kutuları (Örn: Bu konu kilitlendi) */
.df-alert-error { 
    background: rgba(239, 68, 68, 0.1) !important; 
    border-color: rgba(239, 68, 68, 0.3) !important; 
    color: #fca5a5 !important; 
}

/* 5. YENİ CEVAP YAZMA EDİTÖRÜ (Genel DLE Editörü Karanlık Modu) */
.bb-editor, .fr-box, .tox-tinymce {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid var(--df-border) !important;
    background: #0f1724 !important;
}

.bb-editor textarea, .fr-wrapper, .fr-element {
    background-color: #131d2c !important;
    color: #f8fafc !important;
    border: none !important;
    padding: 12px !important;
    min-height: 150px !important;
}

.bb-pane, .fr-toolbar, .tox-editor-header {
    background-color: #182538 !important;
    border-bottom: 1px solid var(--df-border) !important;
    padding: 8px !important;
}

.bb-btn, .fr-command, .tox-tbtn {
    color: #cbd5e1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.bb-btn:hover, .fr-command:hover, .tox-tbtn:hover {
    background-color: var(--df-accent) !important;
    color: #0a111c !important;
    border-radius: 4px !important;
}

/* ==================================================================== */
/* 9. SOHBET ODASI - KULLANICI ADI, METİN KUTUSU VE EDİTÖR DÜZELTMESİ   */
/* ==================================================================== */

/* 1. Tüm Kullanıcı Adı Renklerini Zorla Ezme (Nükleer Seçenek) */
.mod-chat-row a.mod-chat-user, 
.mod-chat-row a.mod-chat-user * {
    color: #38bdf8 !important; /* DLE'nin verdiği tüm renkleri iptal edip neon mavi yapar */
    text-shadow: 0px 0px 5px rgba(56, 189, 248, 0.5) !important;
    font-weight: 900 !important;
}

/* Tüm Kullanıcı Adları İçin Genel Zarafet Ayarı */
.mod-chat-row a.mod-chat-user, 
.mod-chat-row a.mod-chat-user span, 
.mod-chat-row a.mod-chat-user font {
    font-weight: 700 !important; /* 900'dü, 700'e çekilerek zarifleştirildi */
    filter: none !important; /* Arka plandaki beyaz sis kapatıldı */
    letter-spacing: 0.2px;
}

/* 2. Beyaz Kalan Araç Çubuğunu (B, I, U vb.) Karanlık Moda Geçirme */
.mod-chat-form .bb-editor, 
.mod-chat-form .fr-box, 
.mod-chat-form .tox-tinymce {
    background: #0f1724 !important;
    border: 1px solid var(--df-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.mod-chat-form .bb-pane, 
.mod-chat-form .fr-toolbar, 
.mod-chat-form .tox-editor-header {
    background-color: #182538 !important;
    border-bottom: 1px solid var(--df-border) !important;
    padding: 10px !important;
}

/* Araç Çubuğundaki İkonların Renkleri */
.mod-chat-form .bb-btn, 
.mod-chat-form .fr-command, 
.mod-chat-form .tox-tbtn {
    color: #cbd5e1 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.mod-chat-form .bb-btn:hover {
    background-color: var(--df-accent) !important;
    color: #0a111c !important;
}

/* 3. Metin Kutusunu (Textarea) Genişletme ve Yazı Rengini Bembeyaz Yapma */
.mod-chat-form textarea, 
.mod-chat-form iframe, 
.mod-chat-form .fr-wrapper, 
.mod-chat-form .fr-element {
    background-color: #131d2c !important; /* Koyu lacivert arka plan */
    color: #ffffff !important; /* Parlak beyaz metin */
    font-size: 15px !important;
    font-weight: 500 !important;
    min-height: 100px !important; /* Kutuyu ferahlatır / genişletir */
    padding: 16px !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    line-height: 1.6 !important;
    resize: vertical !important; /* Kullanıcı isterse aşağı doğru daha da uzatabilir */
}
.mod-chat-form textarea::placeholder {
    color: #94a3b8 !important; /* Placeholder metnini okunaklı yapar */
}