/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
:root {
    --bs-body-font-size: 24px;
}
/* Estilo visual de cada item de respuesta como fila flex */
.radio-item,
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6em; /* espacio entre el input y el texto */
    padding-top: 0.3em;
    padding-bottom: 0.3em;
}

/* Agrandar el botón de selección */
.radio-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
    transform: scale(1.4);
    margin: 0;
}

/* El texto de la opción */
.radio-label,
.checkbox-item label,
.control-label {
    display: inline;
    vertical-align: middle;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
}


