/* Genel stil iyileştirmeleri */
body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

/* Kartlar için yumuşak gölge */
.card {
    border: none;
    border-radius: 1rem;
}

/* Butonlar için ekstra padding */
.btn-lg {
    padding: 12px 30px;
}

/* Dark mode'da metin okunurluğu */
[data-bs-theme="dark"] {
    background-color: #1e1e1e !important;
    color: #f0f0f0 !important;
}

[data-bs-theme="dark"] .card {
    background-color: #2d2d2d;
    color: #f0f0f0;
}

[data-bs-theme="dark"] .text-muted {
    color: #bbbbbb !important;
}

/* Prose sınıfı için dark mode */
[data-bs-theme="dark"] .prose {
    color: #e0e0e0;
}