 /* Estilo para desktop */
 .texto-desktop {
    display: block;
}

.gridjs-tbody, .gridjs-th-content {
    font-size: 14px;
}

.results-table {
    border-collapse: collapse;
        display: table;
        margin: 0;
        max-width: 100%;
        overflow: auto;
        padding: 0;
        
        text-align: left;
        width: 100%;
    }

    .off {
        display: none;
    }

/* Estilo para mobile */
@media only screen and (max-width: 600px) {
    .texto-desktop {
        display: none;
    }

    .texto-mobile {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .results-table th,
    .results-table td {
        width: auto !important;
        
        overflow: hidden; /* Esconde o conteúdo extra */
        text-overflow: ellipsis; /* Mostra reticências para indicar conteúdo cortado */
    }
}


