/******************
    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;
  }
  
/* Universal Bootstrap-vanilla override for LimeSurvey */

/* Body / page layout */
body, .container, .survey-content {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.5;
}

/* Survey title, question text */
.question-text, .survey-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

/* Labels and input styling */
label, .answers label {
  font-size: 1rem;
  font-weight: normal;
  color: #495057;
}

/* Inputs (text, number, date, etc) */
input[type="text"],
input[type="number"],
input[type="email"],
select.form-control,
textarea.form-control {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input:focus, select:focus, textarea:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(102,175,233, .25);
}

/* Radio / checkboxes */
input[type="radio"], input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.answers li {
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn, button {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  background-color: #007bff;
  border: 1px solid #007bff;
  padding: 0.5rem 1rem;
  border-radius: .25rem;
  text-align: center;
  cursor: pointer;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.btn:hover, .btn:focus {
  background-color: #0056b3;
  border-color: #004085;
}

/* Progress bar / survey navigation */
.progress-bar {
  background-color: #007bff !important;
}

.navbar, .navbar-default {
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
}

/* Error / mandatory indicators */
.error, .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.mandatory {
  color: #dc3545;
}

/* Responsiveness tweaks */
@media (max-width: 768px) {
  .survey-content, .container {
    padding-left: 1rem;
    padding-right:1rem;
  }
  input[type="text"], select.form-control, textarea.form-control {
    max-width: 100%;
  }
}


#surveys-list-container > div > div.row.justify-content-center{
    margin-bottom: 5%;
}
#question78 > div.answer-container.col-12 > div> textarea {
    min-width: 100%;
}
