/******************
    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;
  }
  
/*
imported from old LimeSurvey 3.23

maybe classes have been renamed
*/
.ls-answers tbody .answertext{text-align:center; hyphens: none; }
.ls-answers .answertextright{text-align:left; hyphens: none;}
.dir-rtl .ls-answers tbody .answertext{text-align:left; hyphens: none;}
.dir-rtl .ls-answers .answertextright{text-align:center; hyphens: none;}

/******************
    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;
  }
  
/*
imported from old LimeSurvey 3.23
maybe classes have been renamed
*/
.ls-answers tbody .answertext{text-align:center; hyphens: none; }
.ls-answers .answertextright{text-align:left; hyphens: none;}
.dir-rtl .ls-answers tbody .answertext{text-align:left; hyphens: none;}
.dir-rtl .ls-answers .answertextright{text-align:center; hyphens: none;}

/* -----------------------------------------------
   Ja/Nein-Fragen: klassische Radio-Button-Optik
   ----------------------------------------------- */
.list-radio .btn-group .btn {
    background-color: transparent !important;
    color: #333 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 12px;
    font-size: 1rem;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.list-radio .btn-group .btn::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #999;
    flex-shrink: 0;
    background-color: white;
}

.list-radio .btn-group .btn.active::before,
.list-radio .btn-group .btn[aria-pressed="true"]::before {
    border-color: #2196F3;
    background-color: #2196F3;
    box-shadow: inset 0 0 0 3px white;
}

.list-radio .btn-group .btn:hover::before {
    border-color: #2196F3;
}

.list-radio .btn-group .btn.active,
.list-radio .btn-group .btn:active,
.list-radio .btn-group .btn:focus {
    background-color: transparent !important;
    color: #333 !important;
    outline: none !important;
}