/* Dark Mode Content Visibility */
.dark .post-content,
.dark .post-content * {
    color: rgba(255, 255, 255, 0.85);
}

.dark .post-content p,
.dark .post-content span,
.dark .post-content a,
.dark .post-content li,
.dark .post-content td,
.dark .post-content th {
    color: rgba(255, 255, 255, 0.85);
}

.dark .post-content h1,
.dark .post-content h2,
.dark .post-content h3,
.dark .post-content h4,
.dark .post-content h5,
.dark .post-content h6 {
    color: rgba(255, 255, 255, 0.95);
}

.dark .post-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.dark .post-content a:hover {
    color: #60a5fa;
}

.dark .post-content blockquote {
    border-left-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.dark .post-content code {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
}

.dark .post-content pre {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.dark .post-content pre code {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.dark .post-content table {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .post-content table thead {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
}

.dark .post-content table tbody tr {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Dark Mode Article Excerpt Visibility */
.dark .post-excrept {
    color: rgba(255, 255, 255, 0.75) !important;
}
