/* MDS-NOTES Özel Mobil CSS Yapılandırması */

/* Kaydırma çubuğunu gizle (Toolbar için) */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Araç Çubuğu Buton Tasarımı */
.toolbar-btn {
    padding: 6px 14px;
    background-color: #1c1c24;
    border: 1px solid #272732;
    color: #a0aec0;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    flex-shrink: 0;
    transition: all 0.15s ease;
}
.toolbar-btn:active {
    background-color: #2e2e3d;
    transform: scale(0.95);
    color: #fff;
}

/* Özelleştirilmiş Markdown Önizleme Stilleri (Dark Mode) */
.markdown-prose {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 14px;
}
.markdown-prose h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    border-b: 1px solid #222;
    padding-bottom: 4px;
}
.markdown-prose h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 0.9rem;
    margin-bottom: 0.5rem;
}
.markdown-prose h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
}
.markdown-prose h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-top: 0.7rem;
    margin-bottom: 0.4rem;
}
.markdown-prose p {
    margin-bottom: 0.8rem;
}
.markdown-prose strong {
    color: #6366f1;
    font-weight: 700;
}
.markdown-prose em {
    color: #a5b4fc;
    font-style: italic;
}
.markdown-prose ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 0.8rem;
}
.markdown-prose li {
    margin-bottom: 0.25rem;
}
.markdown-prose hr {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid #272732;
}

/* Seçim engelleme ve mobil optimizasyonlar */
body {
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

input, textarea {
    -webkit-user-select: text;
    user-select: text;
}
