/* Default styles für konvertierte Markdown-Inhalte */

/* Grundlegende Textformatierung */
.md-content h1, 
.md-content h2, 
.md-content h3, 
.md-content h4, 
.md-content h5, 
.md-content h6 {
    color: #000;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    border: none;
    border-bottom: none;
    padding-bottom: 0;
    box-shadow: none;
}

.md-content h1 {
    font-size: 2em;
}

.md-content h2 {
    font-size: 1.5em;
}

.md-content h3 {
    font-size: 1.3em;
}

.md-content h4 {
    font-size: 1.2em;
}

.md-content h5 {
    font-size: 1.1em;
}

.md-content h6 {
    font-size: 1em;
}

.md-content p {
    margin-bottom: 1em;
}

/* Links */
.md-content a {
    color: #0066cc;
    text-decoration: none;
}

.md-content a:hover {
    text-decoration: underline;
}

/* Listen */
.md-content ul, 
.md-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

.md-content li {
    margin-bottom: 0.3em;
}

/* Blockquotes */
.md-content blockquote {
    border-left: 3px solid #ccc;
    margin-left: 0;
    padding-left: 1em;
    color: #666;
    margin-bottom: 1em;
}

/* Code */
.md-content code {
    font-family: monospace;
    background-color: #f0f0f0;
    padding: 2px 4px;
    border-radius: 3px;
}

.md-content pre {
    background-color: #f0f0f0;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1em;
}

/* Tabellen */
.md-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.md-content th, 
.md-content td {
    border: 1px solid #ddd;
    padding: 0.5em;
}

.md-content th {
    background-color: #f0f0f0;
    font-weight: bold;
}

/* Horizontale Linie */
.md-content hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
}

/* Bilder */
.md-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0;
}

/* Aufgabenliste */
.md-content ul.task-list {
    list-style-type: none;
    padding-left: 1em;
}

.md-content .task-list-item {
    margin: 0.2em 0;
}

.md-content .task-list-item-checkbox {
    margin-right: 0.5em;
}