/* Markdown Content Container Styling */
.md-content {
    line-height: 1.6;
    color: var(--text-main);
    font-family: var(--font-base);
    padding: 20px;
}

/* Headings */
.md-content h1, .md-content h2, .md-content h3 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.md-content h3 {
    font-size: 1.4rem;
}

/* Lists (Used in Guide for Steps) */
.md-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.md-content ul li {
    margin-bottom: 10px;
}

/* Strong tags inside lists act like the "Step X" badges */
.md-content ul li strong {
    color: #6c3282;
    background: #f3e5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

/* Blockquotes (Used in Guide for FAQ) */
.md-content blockquote {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    margin: 0 0 15px 0;
}

.md-content blockquote p {
    margin: 0 0 5px 0;
}

.md-content blockquote p strong {
    font-weight: bold;
    color: #333;
}

/* Paragraphs */
.md-content p {
    color: #555;
}

/* Links */
.md-content a {
    color: #1A95D9;
    font-weight: bold;
    text-decoration: none;
}
.md-content a:hover {
    text-decoration: underline;
}

/* Spoilers */
.md-content .spoiler {
    background-color: #2c2c2c;
    color: transparent;
    border-radius: 4px;
    padding: 0 4px;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.md-content .spoiler.revealed {
    background-color: #3f3f3f;
    color: #fff;
}
