.nDialogo{
    --color-bg: #fff;
    --color-text: #000;
}

@media (prefers-color-scheme: dark) {
    .nDialogo{
        --color-bg: #1d1d1d;
        --color-text: #fff;
    }
}

.nDialogo{
    position: absolute;
    /* top :50%; */
    left : 50%;
    padding : 0;
    border-radius : 5px;
    transform : translate(-50%,-50%);
    font-family : Verdana,sans-serif;
    background-color : var(--color-bg);
    color : var(--color-text);
    border : 1px solid;
    border-color : #32aae2;
}

.nDialogoBody{
    padding: 10px;
    overflow: auto;
    height: 100%;
}
.nDialogoTitle{
    background-color : #2196f3;
    color : white;
    padding : 5px;
    font-Size : 15px;
    font-weight : normal;
    text-align : center;
    cursor : move;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nDialogoBtnClose{
    position : absolute;
    top : 3px;
    right : 3px;
    font-weight : bold;
    font-size : 15px;
    background-color : red;
    color : white;
    border-radius : 30%;
    border : solid 1px white;
    content: "Reference: ";
}

.nDialogoBtnClose::before {
    content: "X";
}