/******************
    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;
  }
  
/* 1. BUTTONS NOT SELECTED (Default State) */
.ls-answers .btn-primary {
    background-color: #f0f0f0 !important; /* Light Grey */
    border-color: #dddddd !important;
    color: #333333 !important;           /* Dark Text */
}

/* 2. BUTTONS WHEN SELECTED (Active/Checked State) */
.ls-answers .btn-primary.active, 
.ls-answers .btn-primary:active,
.ls-answers .btn-check:checked + .btn-primary {
    background-color: #094db1 !important; /* Lime Green */
    border-color: #094db1 !important;
    color: #ffffff !important;           /* White Text */
}

/* 3. HOVER STATE (When mouse is over a button) */
.ls-answers .btn-primary:hover {
    background-color: #e0e0e0 !important;
    border-color: #cccccc !important;
}
