.entonuberres{
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    display: none;
}

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

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

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

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

.example-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.night .example-list>div{
    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: 1023px){
    .example-list{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

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