/* /Components/UI/HtmlEditorDialog.razor.rz.scp.css */
.html-editor-backdrop[b-upaq1c1tjr] {
    background-color: rgba(0, 0, 0, 0.5);
}

.editor-surface[b-upaq1c1tjr] {
    min-height: 320px;
    max-height: 55vh;
    overflow: auto;
    background: var(--bg-input);
    color: var(--text-primary);
    line-height: 1.6;
}

    /* site.css :focus-visible outline'ı kapatıyor; odağı kutu gölgesiyle göster */
    .editor-surface:focus[b-upaq1c1tjr] {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 0.2rem var(--accent-glow);
    }

    .editor-surface[b-upaq1c1tjr]  p {
        margin-bottom: 0.5rem;
    }

    .editor-surface[b-upaq1c1tjr]  a {
        text-decoration: underline;
    }

    /* Gösterim sayfalarındaki .majistral-page blockquote kuralıyla aynı görünüm (theme.css) */
    .editor-surface[b-upaq1c1tjr]  blockquote {
        margin: 0.75rem 0;
        padding: 0.5rem 1rem;
        border-left: 4px solid var(--accent-primary);
        background: var(--accent-primary-lighter);
        color: var(--text-secondary);
        font-style: italic;
    }

.editor-source[b-upaq1c1tjr] {
    min-height: 320px;
    max-height: 55vh;
    font-size: 0.85rem;
    white-space: pre-wrap;
}

.editor-toolbar .btn[b-upaq1c1tjr] {
    line-height: 1.2;
}

.editor-toolbar .vr[b-upaq1c1tjr] {
    height: 1.6rem;
    align-self: center;
}
/* /Pages/About.razor.rz.scp.css */
/* Hakkımda Bölümü Stilleri */
.about-me[b-hxpffm61od] {
    padding: 20px 20px;
    background: var(--bg-secondary);
}

.about-me .container[b-hxpffm61od] {
    max-width: 1000px;
    margin: 0 auto;
}

.about-card[b-hxpffm61od] {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.about-header[b-hxpffm61od] {
    background: var(--gradient-primary);
    color: var(--text-inverse);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-icon[b-hxpffm61od] {
    font-size: 1.5rem;
}

.about-header h2[b-hxpffm61od] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-inverse);
}

.about-content[b-hxpffm61od] {
    padding: 25px 30px;
}

.about-content .lead[b-hxpffm61od] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 6px 6px 0;
}

.about-section[b-hxpffm61od] {
    margin-bottom: 25px;
}

.about-section h3[b-hxpffm61od] {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.about-section h3 i[b-hxpffm61od] {
    color: var(--accent-primary);
}

/* Timeline Stilleri */
.timeline[b-hxpffm61od] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li[b-hxpffm61od] {
    position: relative;
    padding: 15px 0 15px 30px;
    border-left: 2px solid var(--border-color);
    margin-left: 70px;
    color: var(--text-primary);
}

.timeline li[b-hxpffm61od]:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--accent-primary);
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 0 2px var(--accent-primary);
}

.timeline .year[b-hxpffm61od] {
    position: absolute;
    left: -90px;
    top: 15px;
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 0.9rem;
    width: 75px;
    text-align: right;
}

/* Projeler Grid */
.projects-grid[b-hxpffm61od] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-item[b-hxpffm61od] {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover[b-hxpffm61od] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.project-year[b-hxpffm61od] {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.project-item strong[b-hxpffm61od] {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.project-item p[b-hxpffm61od] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.about-section ul:not(.timeline)[b-hxpffm61od] {
    padding-left: 20px;
}

.about-section ul:not(.timeline) li[b-hxpffm61od] {
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.6;
}

.about-section p[b-hxpffm61od] {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content[b-hxpffm61od] {
        padding: 20px;
    }

    .timeline li[b-hxpffm61od] {
        padding-left: 30px;
        margin-left: 40px;
    }

    .timeline .year[b-hxpffm61od] {
        left: -70px;
        width: 90px;
        font-size: 0.9rem;
    }

    .projects-grid[b-hxpffm61od] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/AboutApps/BotanicalAbout.razor.rz.scp.css */
.hero[b-x7x4li5jgx] {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200') center/cover no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1[b-x7x4li5jgx] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p[b-x7x4li5jgx] {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .btn[b-x7x4li5jgx] {
    padding: 10px 25px;
    margin: 5px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

    .hero .btn:hover[b-x7x4li5jgx] {
        background: var(--accent-primary-dark);
    }

.overview[b-x7x4li5jgx] {
    background-color: var(--bg-primary);
    padding: 60px 20px;
    text-align: center;
}

.title[b-x7x4li5jgx] {
    margin-bottom: 30px;
}

.features[b-x7x4li5jgx] {
    padding: 60px 20px;
    background-color: var(--bg-secondary);
}

.features-container[b-x7x4li5jgx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature[b-x7x4li5jgx] {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

    .feature h3[b-x7x4li5jgx] {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--text-primary);
    }

    .feature p[b-x7x4li5jgx] {
        font-size: 1rem;
        color: var(--text-secondary);
    }

.feature-image .placeholder[b-x7x4li5jgx] {
    background-color: var(--bg-tertiary);
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor:default;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .hero-content h1[b-x7x4li5jgx] {
        font-size: 2.5rem;
    }
}
/* /Pages/AboutApps/KineticAnalysisAbout.razor.rz.scp.css */
/* Kinetik analiz literatür derlemesi — makale düzeni.
   Eski şablonun 100vh Unsplash "hero"su ve placeholder kutuları kaldırıldı;
   sayfa artık okunacak bir metin olduğu için ölçü dar (72ch) tutuluyor. */

.rehber[b-g1hd6cu9jf] {
    max-width: 860px;
    /* site.css'teki section { margin-top: 70px } kuralıyla aynı üst boşluk;
       article etiketi o kurala girmediği için burada açıkça veriliyor. */
    margin: 70px auto 0;
    padding: 24px 20px 48px;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ---- Başlık ---- */
.rehber-bas[b-g1hd6cu9jf] {
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.rehber-ustbaslik[b-g1hd6cu9jf] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.rehber-bas h1[b-g1hd6cu9jf] {
    font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 12px;
}

.rehber-ozet[b-g1hd6cu9jf] {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.rehber-icindekiler[b-g1hd6cu9jf] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}

    .rehber-icindekiler a[b-g1hd6cu9jf] {
        font-size: 0.8rem;
        padding: 4px 10px;
        border: 1px solid var(--border-light);
        border-radius: 999px;
        background: var(--bg-secondary);
        color: var(--text-secondary);
        text-decoration: none;
        transition: border-color var(--transition-fast), color var(--transition-fast);
    }

        .rehber-icindekiler a:hover[b-g1hd6cu9jf] {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

/* ---- Bölümler ---- */
.rehber section[b-g1hd6cu9jf] {
    /* Sabit navbar başlığı örtmesin diye bağlantı hedefi navbar yüksekliği kadar aşağı kayar */
    scroll-margin-top: 80px;
    margin-top: 28px;
    /* site.css'teki genel section kartı (70% genişlik, kenarlık, zemin) burada geçersiz: sütun zaten .rehber */
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.rehber h2[b-g1hd6cu9jf] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.rehber p[b-g1hd6cu9jf],
.rehber li[b-g1hd6cu9jf] {
    font-size: 0.97rem;
    color: var(--text-secondary);
}

.rehber p[b-g1hd6cu9jf] {
    margin: 0 0 14px;
}

.rehber strong[b-g1hd6cu9jf] {
    color: var(--text-primary);
    font-weight: 600;
}

.rehber ul[b-g1hd6cu9jf],
.rehber ol[b-g1hd6cu9jf] {
    padding-left: 1.4rem;
    margin: 0 0 14px;
}

    .rehber ul li[b-g1hd6cu9jf],
    .rehber ol li[b-g1hd6cu9jf] {
        margin-bottom: 6px;
    }

/* ---- Tablo ---- */
.rehber-tablo-sarmal[b-g1hd6cu9jf] {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.rehber-tablo[b-g1hd6cu9jf] {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    .rehber-tablo caption[b-g1hd6cu9jf] {
        caption-side: bottom;
        padding: 10px 14px 12px;
        text-align: left;
        font-size: 0.82rem;
        color: var(--text-muted);
    }

    .rehber-tablo th[b-g1hd6cu9jf],
    .rehber-tablo td[b-g1hd6cu9jf] {
        padding: 10px 14px;
        text-align: left;
        vertical-align: top;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-secondary);
    }

    .rehber-tablo thead th[b-g1hd6cu9jf] {
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-weight: 600;
        white-space: nowrap;
    }

    .rehber-tablo tbody th[b-g1hd6cu9jf] {
        color: var(--text-primary);
        font-weight: 600;
        white-space: nowrap;
    }

    .rehber-tablo tbody tr:last-child th[b-g1hd6cu9jf],
    .rehber-tablo tbody tr:last-child td[b-g1hd6cu9jf] {
        border-bottom: none;
    }

/* ---- "Bu sitedeki uygulama" kutusu ---- */
.rehber-uygulama[b-g1hd6cu9jf] {
    padding: 20px 24px;
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    background: var(--accent-primary-lighter);
}

    .rehber-uygulama h2[b-g1hd6cu9jf] {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama p[b-g1hd6cu9jf],
    .rehber-uygulama li[b-g1hd6cu9jf] {
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama strong[b-g1hd6cu9jf] {
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama ul[b-g1hd6cu9jf] {
        margin-bottom: 0;
    }

/* ---- Kaynaklar ---- */
.rehber-kaynaklar ol li[b-g1hd6cu9jf] {
    font-size: 0.88rem;
    margin-bottom: 8px;
    overflow-wrap: anywhere;   /* uzun DOI bağlantıları dar ekranda taşmasın */
}


/* ---- Alt ---- */
.rehber-alt[b-g1hd6cu9jf] {
    margin-top: 32px;
}

.rehber-cta[b-g1hd6cu9jf] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--text-inverse);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

    .rehber-cta:hover[b-g1hd6cu9jf] {
        color: var(--text-inverse);
        background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary-darker));
    }

@media (max-width: 768px) {
    .rehber[b-g1hd6cu9jf] {
        padding: 16px 14px 36px;
    }

    .rehber-bas h1[b-g1hd6cu9jf] {
        font-size: 1.45rem;
    }
}

/* Sürüm satırı ve sürüm geçmişi */
.rehber-surum[b-g1hd6cu9jf] {
    margin: -0.5rem 0 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #64748b);
}

.rehber-surum-gecmisi ul[b-g1hd6cu9jf] {
    padding-left: 1.2rem;
}

.rehber-formul[b-g1hd6cu9jf] {
    font-family: "Cambria Math", "STIX Two Math", Georgia, serif;
    font-size: 1.05rem;
    text-align: center;
    margin: 0.75rem 0 1rem;
    overflow-x: auto;
}
/* /Pages/AboutApps/TernaryPhaseDiagramAbout.razor.rz.scp.css */
/* Kinetik analiz literatür derlemesi — makale düzeni.
   Eski şablonun 100vh Unsplash "hero"su ve placeholder kutuları kaldırıldı;
   sayfa artık okunacak bir metin olduğu için ölçü dar (72ch) tutuluyor. */

.rehber[b-xt1sa5aqf4] {
    max-width: 860px;
    /* site.css'teki section { margin-top: 70px } kuralıyla aynı üst boşluk;
       article etiketi o kurala girmediği için burada açıkça veriliyor. */
    margin: 70px auto 0;
    padding: 24px 20px 48px;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ---- Başlık ---- */
.rehber-bas[b-xt1sa5aqf4] {
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.rehber-ustbaslik[b-xt1sa5aqf4] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.rehber-bas h1[b-xt1sa5aqf4] {
    font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 12px;
}

.rehber-ozet[b-xt1sa5aqf4] {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.rehber-icindekiler[b-xt1sa5aqf4] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}

    .rehber-icindekiler a[b-xt1sa5aqf4] {
        font-size: 0.8rem;
        padding: 4px 10px;
        border: 1px solid var(--border-light);
        border-radius: 999px;
        background: var(--bg-secondary);
        color: var(--text-secondary);
        text-decoration: none;
        transition: border-color var(--transition-fast), color var(--transition-fast);
    }

        .rehber-icindekiler a:hover[b-xt1sa5aqf4] {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

/* ---- Bölümler ---- */
.rehber section[b-xt1sa5aqf4] {
    /* Sabit navbar başlığı örtmesin diye bağlantı hedefi navbar yüksekliği kadar aşağı kayar */
    scroll-margin-top: 80px;
    margin-top: 28px;
    /* site.css'teki genel section kartı (70% genişlik, kenarlık, zemin) burada geçersiz: sütun zaten .rehber */
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.rehber h2[b-xt1sa5aqf4] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.rehber p[b-xt1sa5aqf4],
.rehber li[b-xt1sa5aqf4] {
    font-size: 0.97rem;
    color: var(--text-secondary);
}

.rehber p[b-xt1sa5aqf4] {
    margin: 0 0 14px;
}

.rehber strong[b-xt1sa5aqf4] {
    color: var(--text-primary);
    font-weight: 600;
}

.rehber ul[b-xt1sa5aqf4],
.rehber ol[b-xt1sa5aqf4] {
    padding-left: 1.4rem;
    margin: 0 0 14px;
}

    .rehber ul li[b-xt1sa5aqf4],
    .rehber ol li[b-xt1sa5aqf4] {
        margin-bottom: 6px;
    }

/* ---- Tablo ---- */
.rehber-tablo-sarmal[b-xt1sa5aqf4] {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.rehber-tablo[b-xt1sa5aqf4] {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    .rehber-tablo caption[b-xt1sa5aqf4] {
        caption-side: bottom;
        padding: 10px 14px 12px;
        text-align: left;
        font-size: 0.82rem;
        color: var(--text-muted);
    }

    .rehber-tablo th[b-xt1sa5aqf4],
    .rehber-tablo td[b-xt1sa5aqf4] {
        padding: 10px 14px;
        text-align: left;
        vertical-align: top;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-secondary);
    }

    .rehber-tablo thead th[b-xt1sa5aqf4] {
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-weight: 600;
        white-space: nowrap;
    }

    .rehber-tablo tbody th[b-xt1sa5aqf4] {
        color: var(--text-primary);
        font-weight: 600;
        white-space: nowrap;
    }

    .rehber-tablo tbody tr:last-child th[b-xt1sa5aqf4],
    .rehber-tablo tbody tr:last-child td[b-xt1sa5aqf4] {
        border-bottom: none;
    }

/* ---- "Bu sitedeki uygulama" kutusu ---- */
.rehber-uygulama[b-xt1sa5aqf4] {
    padding: 20px 24px;
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    background: var(--accent-primary-lighter);
}

    .rehber-uygulama h2[b-xt1sa5aqf4] {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama p[b-xt1sa5aqf4],
    .rehber-uygulama li[b-xt1sa5aqf4] {
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama strong[b-xt1sa5aqf4] {
        color: var(--accent-primary-contrast);
    }

    .rehber-uygulama ul[b-xt1sa5aqf4] {
        margin-bottom: 0;
    }

/* ---- Kaynaklar ---- */
.rehber-kaynaklar ol li[b-xt1sa5aqf4] {
    font-size: 0.88rem;
    margin-bottom: 8px;
    overflow-wrap: anywhere;   /* uzun DOI bağlantıları dar ekranda taşmasın */
}


/* ---- Alt ---- */
.rehber-alt[b-xt1sa5aqf4] {
    margin-top: 32px;
}

.rehber-cta[b-xt1sa5aqf4] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--text-inverse);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

    .rehber-cta:hover[b-xt1sa5aqf4] {
        color: var(--text-inverse);
        background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary-darker));
    }

@media (max-width: 768px) {
    .rehber[b-xt1sa5aqf4] {
        padding: 16px 14px 36px;
    }

    .rehber-bas h1[b-xt1sa5aqf4] {
        font-size: 1.45rem;
    }
}

/* Sürüm satırı ve sürüm geçmişi */
.rehber-surum[b-xt1sa5aqf4] {
    margin: -0.5rem 0 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #64748b);
}

.rehber-surum-gecmisi ul[b-xt1sa5aqf4] {
    padding-left: 1.2rem;
}

.rehber-formul[b-xt1sa5aqf4] {
    font-family: "Cambria Math", "STIX Two Math", Georgia, serif;
    font-size: 1.05rem;
    text-align: center;
    margin: 0.75rem 0 1rem;
    overflow-x: auto;
}
/* /Pages/Auth/Accessdenied.razor.rz.scp.css */
body[b-1f5mtdcx7u] {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: var(--bg-secondary);
    margin: 0;
}

.container[b-1f5mtdcx7u] {
    text-align: center;
    margin: 100px auto;
    width: 75%;
    padding: 20px;
    /*background-color: #fff;*/
    border-radius: 10px;
    /*box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);*/
}

img[b-1f5mtdcx7u] {
    width: 150px;
    margin-bottom: 20px;
}

h2[b-1f5mtdcx7u] {
    /*font-size: 24px;*/
    color: var(--danger);
    margin-bottom: 20px;
}

p[b-1f5mtdcx7u] {
    font-size: 16px;
    color: var(--text-secondary);
}

@media (max-width: 767.98px) {
    .container[b-1f5mtdcx7u] { width: 100%; margin: 40px auto; }
}
/* /Pages/Home.razor.rz.scp.css */
/* ========================================
   ANASAYFA DASHBOARD
   ======================================== */

.dash[b-zdbrjo2rdt] {
    max-width: 1100px;
    /* Ust bosluk diger bolumlerle ayni olsun diye site.css'teki
       section { margin-top: 70px } degeri korunuyor. Eskiden burada
       "margin: 0 auto" vardi; bu o kurali eziyor, kartin ust kenari
       sabit navbar'in altinda kaliyor ve anasayfa tek basina farkli
       goruniyordu. Padding-top de 90px'ten 15px'e indi: navbar'i asma
       isini artik margin yapiyor. */
    margin: 70px auto 0;
    padding: 15px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ① Tanıtım şeridi */
.dash-intro[b-zdbrjo2rdt] {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 28px 32px;
}

.dash-intro h1[b-zdbrjo2rdt] {
    font-size: 1.9rem;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.dash-intro p[b-zdbrjo2rdt] {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-secondary);
    /* Paragraflar arası boşluk; son paragrafta kartın alt padding'iyle
       üst üste binmesin diye sıfırlanıyor. */
    margin: 0 0 12px;
}

    .dash-intro p:last-child[b-zdbrjo2rdt] {
        margin-bottom: 0;
    }

/* Giriş cümlesi: biraz büyük ve koyu, altındaki açıklama paragraflarından
   ayrılsın. .dash-intro ile birlikte yazılıyor ki yukarıdaki
   ".dash-intro p" kuralını özgüllükte geçsin (!important gerekmesin). */
.dash-intro .dash-intro-lead[b-zdbrjo2rdt] {
    font-size: 1.06rem;
    color: var(--text-primary);
    margin-bottom: 14px;
}

/* Kapanış notu: ince çizgiyle ayrılır. */
.dash-intro .dash-intro-note[b-zdbrjo2rdt] {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-muted);
}

    .dash-intro-note i[b-zdbrjo2rdt] {
        flex: 0 0 auto;
        font-size: 1.05rem;
        line-height: 1.55;
        color: var(--accent-primary);
    }

/* Bölüm kutusu */
.dash-section[b-zdbrjo2rdt] {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
}

.dash-section-head[b-zdbrjo2rdt] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .dash-section-head i[b-zdbrjo2rdt] {
        font-size: 1.3rem;
        color: var(--accent-primary);
    }

    .dash-section-head h2[b-zdbrjo2rdt] {
        font-size: 1.15rem;
        font-weight: 600;
        margin: 0;
        color: var(--text-primary);
    }

/* Kutusuz bölüm başlığı (öne çıkanlar şeridi için) */
.dash-section-head-bare[b-zdbrjo2rdt] {
    padding-left: 4px;
    margin-bottom: 12px;
}

/* ② Öne çıkan araçlar şeridi */
.dash-spotlight[b-zdbrjo2rdt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dash-spot[b-zdbrjo2rdt] {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

    .dash-spot:hover[b-zdbrjo2rdt] {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-primary);
        color: var(--text-primary);
    }

/* Görsel çerçevesi. SVG'ler kendi açık zeminini çizdiği için çerçeve de
   iki temada da aynı açık yüzeyi kullanıyor; böylece koyu temada
   "kazara parlak kutu" değil, bilinçli bir illüstrasyon paneli gibi durur. */
.dash-spot-figure[b-zdbrjo2rdt] {
    display: block;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-light);
}

    .dash-spot-figure img[b-zdbrjo2rdt] {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 240;
    }

.dash-spot-body[b-zdbrjo2rdt] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
    flex: 1;
}

.dash-spot-title[b-zdbrjo2rdt] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

    .dash-spot-title i[b-zdbrjo2rdt] {
        font-size: 1.25rem;
        color: var(--accent-primary);
        flex: 0 0 auto;
    }

.dash-spot-desc[b-zdbrjo2rdt] {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.dash-spot-cta[b-zdbrjo2rdt] {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    padding: 7px 16px;
    border-radius: var(--radius-md);
    /* theme.css'teki .btn-primary ile aynı zemin/yazı çifti:
       dolu aksan zeminde yazı rengi --text-inverse, --accent-primary-contrast değil
       (o token açık aksan yüzeyler için tanımlı). */
    background: var(--gradient-primary);
    color: var(--text-inverse);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition-fast);
}

    .dash-spot-cta i[b-zdbrjo2rdt] {
        font-size: 0.95rem;
    }

.dash-spot:hover .dash-spot-cta[b-zdbrjo2rdt] {
    background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary-darker));
}

/* İki sütunlu satır (Telsiz + Astronomi) */
.dash-columns[b-zdbrjo2rdt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Tile ızgarası */
.dash-grid[b-zdbrjo2rdt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.dash-grid-2[b-zdbrjo2rdt] {
    grid-template-columns: 1fr 1fr;
}

/* Tek tile */
.dash-tile[b-zdbrjo2rdt] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

    .dash-tile:hover[b-zdbrjo2rdt] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-primary);
        color: var(--text-primary);
    }

    .dash-tile > i[b-zdbrjo2rdt] {
        font-size: 1.5rem;
        color: var(--accent-primary);
        flex: 0 0 auto;
        margin-top: 1px;
    }

.dash-tile-body[b-zdbrjo2rdt] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dash-tile-title[b-zdbrjo2rdt] {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.dash-tile-desc[b-zdbrjo2rdt] {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.45;
}

.dash-ext[b-zdbrjo2rdt] {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    vertical-align: super;
}

/* ⑥ Vurgulu bölüm (İZEF) */
.dash-section-featured[b-zdbrjo2rdt] {
    border: 2px solid var(--accent-primary);
    background: var(--accent-primary-lighter);
}

    .dash-section-featured .dash-section-head h2[b-zdbrjo2rdt] {
        color: var(--accent-primary-dark);
    }

.dash-featured-note[b-zdbrjo2rdt] {
    font-size: 0.9rem;
    color: var(--accent-primary-dark);
    margin: -6px 0 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .dash-intro[b-zdbrjo2rdt] {
        padding: 22px 20px;
    }

    .dash-intro h1[b-zdbrjo2rdt] {
        font-size: 1.5rem;
    }

    /* Tanıtım metni üç paragrafa çıktığı için dar ekranda kart uzuyor ve
       araçlar katlanmanın çok altına iniyor; tipografiyi biraz sıkıştırıyoruz. */
    .dash-intro p[b-zdbrjo2rdt] {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .dash-intro .dash-intro-lead[b-zdbrjo2rdt] {
        font-size: 1rem;
    }

    .dash-spotlight[b-zdbrjo2rdt] {
        grid-template-columns: 1fr;
    }

    .dash-columns[b-zdbrjo2rdt] {
        grid-template-columns: 1fr;
    }

    .dash-grid[b-zdbrjo2rdt] {
        grid-template-columns: 1fr;
    }
}

/* SPPS ana sayfa: marka açılımı satırı */
.dash-kicker[b-zdbrjo2rdt] {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-primary-dark);
    margin-bottom: 0.35rem;
}
/* /Pages/Panels/AdminPanel.razor.rz.scp.css */
.form-select[b-bbm41k8nko] {
    width: 40%;
}
#alert-container[b-bbm41k8nko]{
    width:30%;
    margin:0 auto;
    text-align:center;
}

@media (max-width: 767.98px) {
    .form-select[b-bbm41k8nko] { width: 100%; }
    #alert-container[b-bbm41k8nko] { width: 100%; }
}
/* /Pages/Panels/UserPanel.razor.rz.scp.css */
.custom-btn[b-mz0jdl3h48] {
    width:50%;
    font-size: 16px;
    border-radius: 5px; /* Butona yuvarlak köşeler ekler */
}
/* Tablo hücresi ve input yüksekliğini eşitlemek için */
.table td[b-mz0jdl3h48] {
    height: 3.4rem; /* Satır yüksekliğini belirler */
    vertical-align: middle; /* Hücre içeriğini ortalar */
    text-align: left; /* Hücre içeriğini sola hizalar */
    white-space: nowrap; /* Hücre içeriği taşarsa kaydırmayı engeller */
    margin:13px;
}

/* Input alanlarını hücreye uygun hale getirir */
.custom-input[b-mz0jdl3h48] {
    height: 100%; /* Hücre yüksekliğine eşit olur */
    padding: 0.375rem 0.75rem; /* Varsayılan Bootstrap padding */
    font-size: 1rem; /* Yazı boyutunu belirler */
    box-sizing: border-box; /* Kenar dolgularını genişlikten çıkartır */
    width: 100%; /* Tam genişlikte olur */
    border-radius: 2; /* Köşeleri düzleştirir (isteğe bağlı) */
}
.input-error[b-mz0jdl3h48]{
    border-color:red;
    border-width:2px;
}

/* Tablo başlık hücreleri */
.table th[b-mz0jdl3h48] {
    vertical-align: middle; /* Başlık hücrelerini ortalar */
    text-align: left; /* Başlıkları sola hizalar */
}

#alert-container[b-mz0jdl3h48] {
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 575.98px) {
    .custom-btn[b-mz0jdl3h48] { width: 100%; }
}
/* /Pages/Telsiz.razor.rz.scp.css */
.telsiz[b-nrnnlqsxrx] {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-secondary);
    transition: background-color 0.5s;
    display: flex;
    min-height: 100vh;
    width: 100%;
    -ms-align-content: center;
    -webkit-align-content: center;
    align-content: center;
}
/* Sol Menü (Sidebar) */
.sidebar[b-nrnnlqsxrx] {
    width: 250px;
    background-color: var(--accent-primary);
    color: var(--text-inverse);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

    .sidebar h2[b-nrnnlqsxrx] {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .sidebar button[b-nrnnlqsxrx] {
        padding: 10px;
        font-size: 1em;
        border: none;
        border-radius: 5px;
        background-color: var(--bg-primary);
        color: var(--accent-primary);
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }

        .sidebar button:hover[b-nrnnlqsxrx] {
            background-color: var(--bg-hover);
        }

        .sidebar button.active[b-nrnnlqsxrx] {
            background-color: var(--warning);
            color: var(--text-primary);
        }
/* Ana içerik (Main) */
.main[b-nrnnlqsxrx] {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Header: konu başlığı, skor ve hamburger */
.header[b-nrnnlqsxrx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-title[b-nrnnlqsxrx] {
    font-size: 1.4em;
    font-weight: bold;
}

.score[b-nrnnlqsxrx] {
    font-size: 1em;
    color: var(--text-secondary);
}

.hamburger[b-nrnnlqsxrx] {
    font-size: 1.8em;
    cursor: pointer;
    display: none;
}
/* Soru alanı */
.question-section[b-nrnnlqsxrx] {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timer[b-nrnnlqsxrx] {
    font-size: 0.9em;
    text-align: right;
    color: var(--text-muted);
}

.question-text[b-nrnnlqsxrx] {
    font-size: 1.2em;
}

.options[b-nrnnlqsxrx] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cevap vurgulama */
.correct[b-nrnnlqsxrx] {
    background-color: var(--success-light) !important;
    color: var(--success-dark);
}

.incorrect[b-nrnnlqsxrx] {
    background-color: var(--danger-light) !important;
    color: var(--danger-dark);
}

.feedback[b-nrnnlqsxrx] {
    font-size: 1.1em;
    text-align: center;
}

.next-btn[b-nrnnlqsxrx] {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: var(--accent-primary);
    color: var(--text-inverse);
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: center;
}

    .next-btn:hover[b-nrnnlqsxrx] {
        background-color: var(--accent-primary-dark);
    }
/* Responsive Tasarım */
/* /Pages/TelsizMors.razor.rz.scp.css */
/* Genel stiller */
body[b-1x4jz2ha4o] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-secondary);
}

/* Test sayfasına özel ek stiller */
.mode-selection label[b-1x4jz2ha4o] {
    margin-right: 15px;
    cursor: pointer;
}

.mode-selection input[type="radio"][b-1x4jz2ha4o] {
    margin-right: 5px;
}

.test-area[b-1x4jz2ha4o] {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: 5px;
    min-height: 250px; /* İçeriğin yerleşimi için */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question[b-1x4jz2ha4o] {
    font-size: 2.5em; /* Soruyu büyük göster */
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Courier New', Courier, monospace; /* Mors için uygun */
    background-color: var(--bg-tertiary);
    padding: 10px 20px;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

.answer-input[b-1x4jz2ha4o] {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column; /* Öğeleri alt alta dizer */
    align-items: center; /* Ortalar */
    gap: 15px; /* Öğeler arası boşluk */
}

#charInput[b-1x4jz2ha4o] {
    padding: 10px;
    font-size: 1.5em;
    width: 80px; /* Tek karakter için yeterli */
    text-align: center;
    text-transform: uppercase; /* Otomatik büyük harf */
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    color: var(--text-primary);
}

/* Mors giriş alanları için önceki stilden uyarlama */
#morseInputDisplayTest[b-1x4jz2ha4o] {
    border: 1px solid var(--border-color);
    background-color: var(--bg-input);
    padding: 10px;
    font-size: 1.5em;
    min-height: 40px;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 4px;
    color: var(--text-secondary);
    width: 80%; /* Genişliği ayarla */
    text-align: center;
    word-wrap: break-word;
}

.morse-buttons-test button[b-1x4jz2ha4o] { /* Butonları yan yana koy */
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 1.2em;
}

.feedback[b-1x4jz2ha4o] {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    min-height: 25px; /* Yer kaplaması için */
}

    .feedback.correct[b-1x4jz2ha4o] {
        color: var(--success);
    }

    .feedback.incorrect[b-1x4jz2ha4o] {
        color: var(--danger);
    }

.score[b-1x4jz2ha4o] {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
}

#nextQuestionBtn[b-1x4jz2ha4o] {
    background-color: var(--success); /* Yeşil */
    margin-top: 10px;
}

    #nextQuestionBtn:hover[b-1x4jz2ha4o] {
        background-color: var(--success-dark);
    }

/* Butonlar için genel stil */
.btn[b-1x4jz2ha4o] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s;
}

/* Ana buton stili (Cevabı Kontrol Et) */
.btn-primary[b-1x4jz2ha4o] {
    background-color: var(--accent-primary);
}

.btn-primary:hover[b-1x4jz2ha4o] {
    background-color: var(--accent-primary-dark);
}

/* İkincil buton stili (Sonraki Soru) */
.btn-secondary[b-1x4jz2ha4o] {
    background-color: var(--text-secondary);
}

.btn-secondary:hover[b-1x4jz2ha4o] {
    background-color: var(--text-muted);
}

/* Geri bildirim alanı için genel stil */
.feedback[b-1x4jz2ha4o] {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
}

/* Doğru cevap için yeşil stil */
.feedback-correct[b-1x4jz2ha4o] {
    color: var(--success-dark);
    background-color: var(--success-light);
    border: 1px solid var(--success);
}

/* Yanlış cevap için kırmızı stil */
.feedback-incorrect[b-1x4jz2ha4o] {
    color: var(--danger-dark);
    background-color: var(--danger-light);
    border: 1px solid var(--danger);
}

/* Başlangıçta gerekmeyen elemanları gizle */
/*
    #morseInputArea {
    display: none;
}

*/

@media (max-width: 575.98px) {
    #morseInputDisplayTest[b-1x4jz2ha4o] { width: 100%; }
}
/* /Shared/Footer.razor.rz.scp.css */
/* Footer içeriği navbar markasıyla aynı hizadan başlasın diye:
   NavMenu.razor.css'te .navbar-custom { padding: 10px 20px } var; buradaki
   20px onunla aynı. İçteki .container-fluid'in kendi 12px'i eklenince
   toplam 32px oluyor — navbar markasının ölçülen sol kenarı da 32px.
   Bu ikisini birlikte değiştir, yoksa hizalama kayar. */
.footer-custom[b-x9526thwsy] {
    padding-left: 20px;
    padding-right: 20px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
h3[b-30vrfvif2r]{
    text-align:center;
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* Navbar Varsayılan Görünüm */
.navbar-custom[b-mdl71tnbnc] {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent;
    padding: 10px 20px;
    color: var(--text-primary);
}

/* Navbar Kaydırıldığında */
.navbar-scrolled[b-mdl71tnbnc] {
    background-color: var(--bg-secondary) !important;
    box-shadow: var(--shadow-sm);
    padding: 10px 20px;
}

/* Navbar Marka ve Linkler Varsayılan */
.navbar-brand[b-mdl71tnbnc], .nav-link[b-mdl71tnbnc] {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

/* Navbar Kaydırıldığında Link ve Marka Rengi */
.navbar-scrolled .navbar-brand[b-mdl71tnbnc],
.navbar-scrolled .nav-link[b-mdl71tnbnc] {
    color: var(--text-primary) !important;
}

/* Navbar Link Hover Efekti */
.nav-link:hover[b-mdl71tnbnc] {
    color: var(--accent-primary) !important;
    text-decoration: underline;
}

/* ----------- HAMBURGER MENÜ STİLLERİ ------------ */

/* Hamburger Varsayılan */
.navbar-toggler[b-mdl71tnbnc] {
    border: 1px solid transparent;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

/* Kaydırma Sonrası Hamburger */
.navbar-scrolled .navbar-toggler[b-mdl71tnbnc] {
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* Hamburger Menüsü Açıldığında Renk Değişimi Engellendi */
.navbar-custom.show[b-mdl71tnbnc] {
    background-color: transparent !important;
}

/* Navbar Açıldığında Kenarlık Rengi */
.navbar-toggler:focus[b-mdl71tnbnc] {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

/* ----------- BUTON STİLLERİ ------------ */

/* Kaydırma Öncesi Butonlar */
.default-buttons a button[b-mdl71tnbnc] {
    transition: all 0.3s ease;
}

/* Kaydırma Sonrası Butonlar */
.scrolled-buttons a button[b-mdl71tnbnc] {
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    background-color: transparent;
    transition: all 0.3s ease;
}

    /* Buton Hover Efekti (Kaydırma Öncesi ve Sonrası) */

    .scrolled-buttons a button:hover[b-mdl71tnbnc] {
        border: 1px solid var(--text-primary);
        background-color: var(--text-primary);
        color: var(--bg-primary) !important;
    }

/* ----------- DROPDOWN MENÜ STİLLERİ ------------ */
.nav-item.dropdown .dropdown-menu[b-mdl71tnbnc] {
    border-radius: 5px;
    border: none;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

:root[data-theme="dark"] .navbar-custom[b-mdl71tnbnc],
[data-theme="dark"] .navbar-custom[b-mdl71tnbnc] {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.dropdown-item[b-mdl71tnbnc] {
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--text-primary);
}

    .dropdown-item:hover[b-mdl71tnbnc] {
        background-color: var(--accent-primary);
        color: var(--text-inverse);
    }

/* Marka: üçlü faz üçgeni işareti + "maege.tr" (".tr" aksan renginde). İşaret currentColor
   ile metin rengini alır; içteki açık üçgen sayfa zemininden gelir, koyu temada da doğru. */
.brand[b-mdl71tnbnc] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary) !important;
    letter-spacing: -0.01em;
}

    .brand-mark[b-mdl71tnbnc] {
        width: 1.45rem;
        height: 1.27rem;
        flex: 0 0 auto;
    }

    .brand-mark-inner[b-mdl71tnbnc] {
        fill: var(--bg-primary);
        opacity: 0.6;
    }

    .brand-text[b-mdl71tnbnc] {
        color: var(--text-primary);
        font-weight: 600;
    }

    .brand-tld[b-mdl71tnbnc] {
        color: var(--accent-primary);
    }

    .brand:hover .brand-text[b-mdl71tnbnc] {
        color: var(--accent-primary-dark);
    }

/* Dil anahtarı (yalnız SPPS): TR | EN */
.lang-switch[b-mdl71tnbnc] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

    .lang-btn[b-mdl71tnbnc] {
        border: 0;
        background: transparent;
        color: var(--text-secondary, #64748b);
        padding: 0.15rem 0.3rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        cursor: pointer;
        border-radius: 4px;
    }

    .lang-btn.active[b-mdl71tnbnc] {
        color: var(--accent-primary);
        text-decoration: underline;
        text-underline-offset: 0.2em;
    }

    .lang-btn:hover[b-mdl71tnbnc] {
        color: var(--accent-primary-dark);
    }

    .lang-sep[b-mdl71tnbnc] {
        color: var(--border-color);
    }
