.mb-4 {
    margin-bottom: 4px!important;
}

.form-title {
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-subtitle {
    text-align: center;
    margin-top: 0;
}

.field-wrapper {
    height: auto!important;
    margin-bottom: 16px;

    position: relative;
    float: left;
    width: 100%;
}

/* combos */
.field-wrapper.combo {
    /* border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 12px;
    width: -webkit-fill-available !important;

    break-inside: auto !important;
    page-break-inside: auto !important; */
    /* margin-bottom: 0; */
}
/* .field-wrapper.combo .field-answer {
    width: 100%!important;
} */
.field-answer .box-item-wrapper:not(:first-child) {
    margin-top: 16px;
}
/* .field-wrapper.combo .box-item-wrapper {
    height: auto!important;
    width: -webkit-fill-available!important;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 16px;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px, rgb(0 0 0 / 1%) 0px 2px 2px;
} */
.field-wrapper.combo .box-item-wrapper .box-item {
    height: auto!important;
    width: auto!important;
    /* border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden; */
    padding-left: 16px;
    /* box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px,rgb(0 0 0 / 1%) 0px 2px 2px; */
}

.field-wrapper.hide {
    display: none!important;
}

.field-title {
    color: unset;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    padding: 0;
    font-weight: 700;
    
    position: relative;
    float: left;
    width: 100%;
}
.field-title.mb-4 {
    margin-bottom: 4px!important;
}
.field-description {
    color: rgba(0, 0, 0, 0.6);
    height: auto !important;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin-bottom: 6px !important;
    
    position: relative;
    float: left;
    width: 100%;
}
.field-answer {
    white-space: pre-wrap;
    height: auto!important;

    position: relative;
    float: left;
    margin-bottom: 4px;
}
.field-answer-list {
    height: auto!important;
    list-style: unset;
    margin: unset;
    padding-left: 1.2rem;
}
.field-answer-list-item {
    height: auto!important;
}

.combo-test {
    height: auto!important;
}

table {
    border-collapse: collapse; /* Garante que as bordas das células não causem deslocamento */
    width: 100%;
    border: 1px solid black;
}
table td {
    border: 1px solid black;
    padding: 0.3rem .7rem;
}
table th {
    border: 1px solid black;
    padding: 0 .3em;
    text-align: center;
}

td {
    overflow: hidden; /* Impede que a tabela filha ultrapasse os limites */
    padding: 0; /* Remove espaços internos que podem causar estouro */
}

td > .field-answer {
    width: 100% !important; /* Força a tabela filha a ocupar no máximo o tamanho do <td> */
    table-layout: fixed; /* Mantém a estrutura da tabela sem esticar */
    margin-bottom: 0px;
}