/* シングルページのダークモード文字色改善 */
.single-dark-text {
    color: #1f2937 !important; /* gray-800に近い色 */
}

/* より具体的な指定 */
.single_post .dark\\:text-black {
    color: #111827 !important; /* gray-900 */
}

/* articleBody内の文字色をより濃く */
div[itemprop="articleBody"].dark\\:text-black,
.dark div[itemprop="articleBody"] {
    color: #111827 !important; /* gray-900 */
}

/* explain内の文字色もより濃く */
.dark .explain .dark\\:text-black {
    color: #111827 !important; /* gray-900 */
}

/* ダークモード時のsingle全体の文字色調整 */
@media (prefers-color-scheme: dark) {
    .single_post .dark\\:text-black,
    .single_post div[itemprop="articleBody"],
    .single_post .explain {
        color: #111827 !important; /* gray-900 - より暗い文字色 */
    }
    
    /* 段落文字も濃く */
    .single_post p.dark\\:text-black,
    .single_post div.dark\\:text-black {
        color: #111827 !important;
    }
}
