.marktohtmldemores{
    border: 1px solid #eee;
    border-radius: 6px;
    margin-top: 0.75rem;
    overflow: hidden;
    display: none;
}

.night .marktohtmldemores{
    border:1px solid #444;
}

.marktohtmldemores>h3{
    font-size: 0.6rem;
    background-color: #f6f7fa;
    border-bottom: 1px solid #eee;
    height: 1.8rem;
    line-height: 1.8rem;
    padding-left: 0.5rem;
}

.night .marktohtmldemores>h3{
    color: #aaa;
    background-color: #181a1b;
    border-bottom: 1px solid #444;
}

.htmldemodiv{
    padding: 0.5rem;
}

.markdown-body hr{
    background-color: #e2e8f0;
}

.markdown-body blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    margin: 1.2rem 0;
    color: #64748b;
    font-style: italic;
}


.mkhtmldems{
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 4px;
}

.night  .mkhtmldems{
    border:1px solid #444;
}

.mkhtmldems h3{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.night .mkhtmldems h3{
    border-bottom: 1px solid #444;
}

.example-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.example-item{
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.night .example-item{
    background-color: #181a1b;
}

.example-item>div:nth-child(1){
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.6rem;
}

.night .example-item>div:nth-child(1){
    color: #3498db;
}

.example-item>div:nth-child(2){
    color: #7f8c8d;
    font-size: 0.6rem;
}

.night .example-item>div:nth-child(2){
    color: #aaa;
}

@media screen and (max-width: 465px){
    .example-list{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}