.main-container.truthtable {
    margin-top: 1em;
}

.truthtable-config {
    background-color: transparent;
}
/* Small */
@media screen and (min-width: 500px) {
    .truthtable-config .box-config-options { flex-direction: column; }
}
/* Medium */
@media screen and (min-width: 501px) and (max-width: 1199px) {
    .truthtable-config .box-config-options { flex-direction: row; }
}
/* Large */
@media screen and (min-width: 1200px) {
    .truthtable-config .box-config-options { flex-direction: row; }
}

.truthtable-content-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 1em;
}

.box-operacoes {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ttCel {
    color: var(--th-text-1);
}
.ttCel.base {
    background-color: var(--cl-ttCel-base-bg);
    color: var(--cl-ttCel-base-tx);
}
.ttCel.corret {
    background-color: var(--cl-ttCel-corret);
}
.ttCel.wrong {
    background-color: var(--cl-ttCel-wrong);
}
.ttCel.warning {
    background-color: var(--cl-ttCel-warning);
}


.truthtable-table th,
.truthtable-table td {
    text-wrap: nowrap;
}

.truthtable-table td input {
    width: 100%;
    height: 100%;
    text-wrap: nowrap;
    background-color: transparent;
    border: none;
    box-shadow: 0px 2px 0px 0px var(--th-hover-1);
    border-radius: 0.1em;
    outline: none;

    text-align: center;
    font-size: 2rem;
    color: var(--th-text-1);
}
.truthtable-table td.base input {
    color: var(--th-text-2);
    box-shadow: 0px 2px 2px 0px var(--th-hover-2);
}

.truthtable-table td.highlight {
    outline: 2px solid var(--cl-secondary);
}