/* for asked quiz */
#asked-quiz{
  transition: all 0.5s ease;
}

#quiz-container h4{
  color: white !important;
}


/* for table sortable */
.tournament-table table{
  border: 0;
  border-collapse: separate;
  border-spacing: 0 10px;
}


.tournament-table tbody tr td ~ td {
  text-align: left !important;
}

/* for asked radio */
#asked-quiz .asked-radio-input {
  opacity: 0;
  position: fixed;
  width: 0;
}

#asked-quiz .asked-radio-label{
  padding: 1vw !important;
}

#asked-quiz .btn-group{
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

#asked-quiz .asked-radio-label::before{
  display: none !important;
}

#asked-quiz .asked-radio-input:checked + label{
  background-color: var(--bs-blue);
  border-color: rgb(58, 63, 58);
  color: white;
}
#asked-quiz .asked-radio-input:focus {
  outline: 2px solid #4c4;
}

#asked-quiz .asked-radio-label:hover {
  background-color: var(--bs-blue);
}