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

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

.mkhtml h3{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
}

.mkhtml textarea{
    border: 1px solid #e8e8fd;
    color: rgba(0, 0, 0, .85);
    width: 100%;
    height: 20rem;
    padding: 0.5rem;
    font-size: 0.65rem;
    display: block;
}

.mkhtmlbut{
    margin-top: 0.5rem;
}

.mkhtmlbut button{
    padding: 0.4rem 1rem;
    text-align: center;
    border: 0;
    background-color: #607D8B;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.mkhtmlbut button:nth-child(1){
    background-color: #009688;
}


.mkinfos{
    height: 1.8rem;
    line-height: 1.8rem;
    display: flex;
    justify-content: space-between;
    color: #7f8c8d;
    font-size: 0.6rem;
    border: 1px solid #e8e8fd;
    border-top: 0;
    padding: 0 0.5rem;
}

.night .mkinfos{
    border: 1px solid #444;
    border-top: 0;
}

.mkinfos span{

}

.mkhtmlres{
    border: 1px solid #e8e8fd;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

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

.mkhtmlres h3{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
}

.mkhtmlres textarea{
    border: 1px solid #e8e8fd;
    color: rgba(0, 0, 0, .85);
    width: 100%;
    height: 20rem;
    padding: 0.5rem;
    font-size: 0.65rem;
    display: block;
}

.mkresinfos{
    height: 1.8rem;
    line-height: 1.8rem;
    display: flex;
    justify-content: space-between;
    color: #7f8c8d;
    font-size: 0.6rem;
    border: 1px solid #e8e8fd;
    border-top: 0;
    padding: 0 0.5rem;
}

.night .mkresinfos{
    border: 1px solid #444;
    border-top: 0;
}

.mkhtmlresbut{
    margin-top: 0.5rem;
}

.mkhtmlresbut button{
    padding: 0.4rem 1rem;
    text-align: center;
    color: #666;
    background-color: transparent;
    border: 1px solid #e8e8fd;
    border-radius: 3px;
    cursor: pointer;
}

.night .mkhtmlresbut button{
    background-color: #181a1b;
    border: 1px solid #444;
    color: #aaa;
}

.mkhtmldems{
    border: 1px solid #e8e8fd;
    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 #e8e8fd;
    padding-bottom: 0.5rem;
}

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

.mkhtmldems p{

}

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

.mkhtml textarea::-webkit-scrollbar ,.mkhtmlres textarea::-webkit-scrollbar{
    width: 6px;
    background-color: #e5e5e5;
}

.mkhtml textarea::-webkit-scrollbar-thumb ,.mkhtmlres textarea::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #bbb;
}

.night .mkhtml textarea::-webkit-scrollbar ,.night .mkhtmlres textarea::-webkit-scrollbar {
    width: 6px;
    background-color: #242627;
}

.night .mkhtml textarea::-webkit-scrollbar-thumb ,.night .mkhtmlres textarea::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #444;
}