body {
    font-family: "Helvetica Neue", Helvetica, Arial;
    font-size: 14px;
    line-height: 20px;
    /*font-weight: 400;*/
    color: #3b3b3b;
    -webkit-font-smoothing: antialiased;
}

.titulo {
    text-align: center;
    font-weight: bold;
    font-size: 12pt;
    border-width: 1px 1px 1px 1px;
    padding: 1px;
}

.subtitulo {
    text-align: center;
    font-size: 10pt;
    border-width: 1px 1px 1px 1px;
    padding: 1px;
}

fieldset {
    margin: 0.5rem;
    padding: 4px;
    border-radius: 5px;
    background: WhiteSmoke;
    border: solid gray 0.5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25), 0 6px 6px rgba(0,0,0,0.22);
}

fieldset legend {
    font-size: 13pt;
}

fieldset.fieldsetInfo{
    /* #1FA0FA */
    border: solid #2050aa 0.5px;
    background: #E5F3FC;
    padding-bottom:2px;
}

fieldset.fieldsetCmdResult{
    overflow-y:scroll;
    overflow-x:scroll;
    min-height:185px;
    max-height:340px;
    min-width:30vw;
    max-width:75vw;
    position:sticky;
}

.botao {
    width: 160px;
    background-color: #2050aa;
    color: #ffffff;
    text-align: center;
}


/* CSS para árvore */
 /* Remove default bullets */
ul, #myUL {
    list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#myUL {
    margin: 0;
    padding: 0;
}

/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
    content: "\25B6";
    color: gray;
    display: inline-block;
    transform: rotate(90deg);
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    transform: rotate(270deg);
}

/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}

.table {
    margin: auto;
    width: 90%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    padding: 5px;
    display: table;
}

.row {
    display: table-row;
    background: #f6f6f6;
}
    
.row:nth-of-type(odd) {
    background: #e9e9e9;
}

.row.header {
    /*font-weight: 900;*/
    color: #ffffff;
    background: #ea6153;
}
  
.row.blue {
    background: #2050aa;
}

.cell {
    padding: 3px 6px;
    display: table-cell;
}

.cellCenter{
    padding: 3px 6px;
    display: table-cell;
    text-align: center;
}
