.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));
    }
}